提交 4b04f561 编写于 作者: M Mohit Natoo

Removed string inquiry.

fixed indentation.

rebased with master.
上级 673606a9
......@@ -49,10 +49,10 @@ def interpret_adapter(name_or_adapter_or_class)
end
end
def assign_adapter(adapter_name, queue_adapter)
self._queue_adapter_name = ActiveSupport::StringInquirer.new(adapter_name)
self._queue_adapter = queue_adapter
end
def assign_adapter(adapter_name, queue_adapter)
self._queue_adapter_name = adapter_name
self._queue_adapter = queue_adapter
end
QUEUE_ADAPTER_METHODS = [:enqueue, :enqueue_at].freeze
......
......@@ -29,13 +29,13 @@ class QueueAdapterTest < ActiveJob::TestCase
child_job_one.queue_adapter = :stub_one
assert_not_equal ActiveJob::Base.queue_adapter, child_job_one.queue_adapter
assert_equal "stub_one", child_job_one.queue_adapter_name
assert child_job_one.queue_adapter_name.stub_one?
assert_kind_of ActiveJob::QueueAdapters::StubOneAdapter, child_job_one.queue_adapter
child_job_two = Class.new(ActiveJob::Base)
child_job_two.queue_adapter = :stub_two
assert child_job_two.queue_adapter_name.stub_two?
assert_equal "stub_two", child_job_two.queue_adapter_name
assert_kind_of ActiveJob::QueueAdapters::StubTwoAdapter, child_job_two.queue_adapter
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册