Sha256: 978f66dcaa7522ead415f1dd325a0b7a276e3f52c863bd512c29791bbd115d75
Contents?: true
Size: 1012 Bytes
Versions: 3
Compression:
Stored size: 1012 Bytes
Contents
require 'test/test_helper' class Invitable < User devise :database_authenticatable, :invitable, :invite_for => 5.days end class ActiveRecordTest < ActiveSupport::TestCase def include_module?(klass, mod) klass.devise_modules.include?(mod) && klass.included_modules.include?(Devise::Models::const_get(mod.to_s.classify)) end def assert_include_modules(klass, *modules) modules.each do |mod| assert include_module?(klass, mod), "#{klass} not include #{mod}" end (Devise::ALL - modules).each do |mod| assert_not include_module?(klass, mod), "#{klass} include #{mod}" end end test 'add invitable module only' do assert_include_modules Invitable, :database_authenticatable, :invitable end test 'set a default value for invite_for' do assert_equal 5.days, Invitable.invite_for end test 'invitable attributes' do assert_not_nil Invitable.columns_hash['invitation_token'] assert_not_nil Invitable.columns_hash['invitation_sent_at'] end end
Version data entries
3 entries across 3 versions & 2 rubygems
Version | Path |
---|---|
lperichon-devise_invitable-0.3.0 | test/models_test.rb |
devise_invitable-0.3.0 | test/models_test.rb |
devise_invitable-0.2.3 | test/models_test.rb |