Skip to content

ubiregiinc/resque_unit_without_mock

Repository files navigation

ResqueUnitWithoutMock

現物redisにを使いながらresque_unitとほぼ同じIFのメソッドを提供するgemです。
このgemを使うと、resque_unitを使っていたけど実物redisを使うテストに切り替える時に既存テストをほぼ維持したまま移行が可能です。
minitestのみサポートしています。(please pull request for support rspec)

Installation

Add this line to your application's Gemfile:

gem 'resque_unit_without_mock', group: :test

And then execute:

$ bundle

resque_unitとの違い

resque_unitで提供していた Resque.queuesResque.queued になっています。

Usage

Resque.reset! はプロジェクト内で再定義してください

専用のredis-serverプロセスを使っているなら flushdbでいいですが、
相乗りしているredis-serverの場合は https://gist.github.com/aserafin/6916037 みたいな感じで初期化するとよいでしょう。

# example
module ResqueHelpersExt
  def reset!
    Resque.data_store.redis.select(ENV['TEST_ENV_NUMBER'].to_i + 1)
    Resque.data_store.redis.flushdb
    super
  end
end
Resque.singleton_class.prepend(ResqueHelpersExt)

Development

  • docker compose run --rm app bash
  • bundle install
  • bundle exec rake

License

The gem is available as open source under the terms of the MIT License.

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

No packages published