Sha256: a7d03ef0447e00260b132d46ad8790333b4f6931acbf3f2c7b8541f9b7005e0a

Contents?: true

Size: 601 Bytes

Versions: 2

Compression:

Stored size: 601 Bytes

Contents

require 'spec_helper'


module Bullet
  module Registry
    describe Object do
      let(:post) { Post.first }
      let(:another_post) { Post.last }
      subject { Object.new.tap { |object| object.add(post.bullet_ar_key) } }

      context "#include?" do
        it "should include the object" do
          expect(subject).to be_include(post.bullet_ar_key)
        end
      end

      context "#add" do
        it "should add an object" do
          subject.add(another_post.bullet_ar_key)
          expect(subject).to be_include(another_post.bullet_ar_key)
        end
      end
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bullet-4.9.0 spec/bullet/registry/object_spec.rb
bullet-4.8.0 spec/bullet/registry/object_spec.rb