mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
18 lines
411 B
Ruby
18 lines
411 B
Ruby
|
require 'helper'
|
||
|
require 'jobs/hello_job'
|
||
|
|
||
|
class QueueNamingTest < ActiveSupport::TestCase
|
||
|
test 'name derived from base' do
|
||
|
assert_equal "active_jobs", HelloJob.queue_name
|
||
|
end
|
||
|
|
||
|
test 'name appended in job' do
|
||
|
begin
|
||
|
HelloJob.queue_as :greetings
|
||
|
assert_equal "active_jobs_greetings", HelloJob.queue_name
|
||
|
ensure
|
||
|
HelloJob.queue_name = HelloJob.queue_base_name
|
||
|
end
|
||
|
end
|
||
|
end
|