aboutsummaryrefslogblamecommitdiffstats
path: root/activejob/test/cases/adapter_test.rb
blob: 2c179b2d38941640ba40dbc47e415ce8b7aa2ae7 (plain) (tree)
1
2
3
4
5
6
7
8
9
                             
 
                

                                           
                                                    
                                                                                                                            
     
   
# frozen_string_literal: true

require "helper"

class AdapterTest < ActiveSupport::TestCase
  test "should load #{ENV['AJ_ADAPTER']} adapter" do
    assert_equal "active_job/queue_adapters/#{ENV['AJ_ADAPTER']}_adapter".classify, ActiveJob::Base.queue_adapter.class.name
  end
end