Sha256: 3cea6dee28ef8c1c280001d48294cbb2ad555abc392866f61c6876bf0581887c

Contents?: true

Size: 416 Bytes

Versions: 4

Compression:

Stored size: 416 Bytes

Contents

require 'spec_helper'

describe ActivityFeed::Configuration do
  describe '#configure' do
    it 'should have default attributes' do
      ActivityFeed.configure do |configuration|
        configuration.namespace.should == 'activity_feed'
        configuration.aggregate.should be_false
        configuration.aggregate_key.should == 'aggregate'
        configuration.page_size.should== 25
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
activity_feed-2.2.0 spec/activity_feed/configuration_spec.rb
activity_feed-2.1.0 spec/activity_feed/configuration_spec.rb
activity_feed-2.0.0 spec/activity_feed/configuration_spec.rb
activity_feed-2.0.0.rc1 spec/activity_feed/configuration_spec.rb