Methods

Instance Public methods

disable_test_adapter()

📝 Source code
# File activejob/lib/active_job/test_helper.rb, line 27
        def disable_test_adapter
          self._test_adapter = nil
        end
🔎 See on GitHub

enable_test_adapter(test_adapter)

📝 Source code
# File activejob/lib/active_job/test_helper.rb, line 31
        def enable_test_adapter(test_adapter)
          self._test_adapter = test_adapter
        end
🔎 See on GitHub

queue_adapter()

📝 Source code
# File activejob/lib/active_job/test_helper.rb, line 23
        def queue_adapter
          self._test_adapter.nil? ? super : self._test_adapter
        end
🔎 See on GitHub