Sha256: 8a57cb03cec08f9a2604e2106289346bb20ec18c58d92f7216f527f57d48e8cc
Contents?: true
Size: 401 Bytes
Versions: 4
Compression:
Stored size: 401 Bytes
Contents
require 'test_helper' class TestCompatibility < ActiveSupport::TestCase test 'can access ActiveRecord namespace' do skip unless DEVISE_ORM == :active_record assert_nothing_raised { User.new.some_method_calling_active_record } end test 'can access Mongoid namespace' do skip unless DEVISE_ORM == :mongoid assert_nothing_raised { User.new.some_method_calling_mongoid } end end
Version data entries
4 entries across 4 versions & 1 rubygems