Sha256: 1e5d2f17fa0e27ecdca43f18e2f28624d0733465abf44505a7500697725ed671

Contents?: true

Size: 1008 Bytes

Versions: 6

Compression:

Stored size: 1008 Bytes

Contents

require 'spec_helper'

module Commontator
  describe ActsAsCommontable do
    it 'must add methods to ActiveRecord and subclasses' do
      ActiveRecord::Base.must_respond_to :acts_as_commontable
      ActiveRecord::Base.must_respond_to :is_commontable
      ActiveRecord::Base.is_commontable.must_equal false
      DummyModel.must_respond_to :acts_as_commontable
      DummyModel.must_respond_to :is_commontable
      DummyModel.is_commontable.must_equal true
      DummyUser.must_respond_to :acts_as_commontable
      DummyUser.must_respond_to :is_commontable
      DummyUser.is_commontable.must_equal false
    end
    
    it 'must modify models that act_as_commontable' do
      dummy = DummyModel.create
      dummy.must_respond_to :thread
      dummy.must_respond_to :comments
      dummy.must_respond_to :subscriptions
      dummy.must_respond_to :commontable_config
      dummy.must_respond_to :relation_thread
      dummy.commontable_config.must_be_instance_of CommontableConfig
    end
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
commontator-4.8.0 spec/lib/commontator/acts_as_commontable_spec.rb
commontator-4.7.2 spec/lib/commontator/acts_as_commontable_spec.rb
commontator-4.7.1 spec/lib/commontator/acts_as_commontable_spec.rb
commontator-4.7.0 spec/lib/commontator/acts_as_commontable_spec.rb
commontator-4.6.1 spec/lib/commontator/acts_as_commontable_spec.rb
commontator-4.6.0 spec/lib/commontator/acts_as_commontable_spec.rb