Sha256: b4fa45e8a9ce889967a73a4441d7d40f5f4d4af155c0adc76c9db056aa7b2ccb

Contents?: true

Size: 875 Bytes

Versions: 10

Compression:

Stored size: 875 Bytes

Contents

require File.dirname(__FILE__) + '/test_helper'

# Pull in the server test_helper from resque
require 'resque/server/test_helper.rb'

context "on GET to /schedule" do
  setup { get "/schedule" }

  should_respond_with_success
end

context "on GET to /schedule with scheduled jobs" do
  setup do 
    ENV['rails_env'] = 'production'
    Resque.schedule = {:some_ivar_job => {'cron' => "* * * * *", 'class' => 'SomeIvarJob', 'args' => "/tmp", 'rails_env' => 'production'},
                       :some_other_job => {'queue' => 'high', 'class' => 'SomeOtherJob', 'args' => {:b => 'blah'}}}
    Resque::Scheduler.load_schedule!
    get "/schedule"
  end

  should_respond_with_success

  test 'see the scheduled job' do
    assert last_response.body.include?('SomeIvarJob')
  end
end

context "on GET to /delayed" do
  setup { get "/delayed" }

  should_respond_with_success
end

Version data entries

10 entries across 10 versions & 3 rubygems

Version Path
resque-scheduler-2.0.1 test/resque-web_test.rb
ealdent-resque-scheduler-2.0.0.e test/resque-web_test.rb
nogara-resque-scheduler-2.0.2 test/resque-web_test.rb
nogara-resque-scheduler-2.0.1 test/resque-web_test.rb
resque-scheduler-2.0.0 test/resque-web_test.rb
resque-scheduler-2.0.0.h test/resque-web_test.rb
resque-scheduler-2.0.0.g test/resque-web_test.rb
resque-scheduler-2.0.0.e test/resque-web_test.rb
resque-scheduler-2.0.0.d test/resque-web_test.rb
resque-scheduler-1.9.9 test/resque-web_test.rb