Sha256: fa6dab0eb7464a4fb9780e8e8103ed4cf796447cb5b9e8fc50fbd1b6b3c20e2e

Contents?: true

Size: 1 KB

Versions: 2

Compression:

Stored size: 1 KB

Contents

require 'spec_helper'

describe Object do
  context 'bullet_key' do
    it 'should return class and id composition' do
      post = Post.first
      expect(post.bullet_key).to eq("Post:#{post.id}")
    end

    if mongoid?
      it 'should return class with namesapce and id composition' do
        post = Mongoid::Post.first
        expect(post.bullet_key).to eq("Mongoid::Post:#{post.id}")
      end
    end
  end

  context 'primary_key_value' do
    it 'should return id' do
      post = Post.first
      expect(post.primary_key_value).to eq(post.id)
    end

    it 'should return primary key value' do
      post = Post.first
      Post.primary_key = 'name'
      expect(post.primary_key_value).to eq(post.name)
      Post.primary_key = 'id'
    end

    it 'should return value for multiple primary keys' do
      post = Post.first
      allow(Post).to receive(:primary_keys).and_return([:category_id, :writer_id])
      expect(post.primary_key_value).to eq("#{post.category_id},#{post.writer_id}")
    end
  end
end

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
bullet-5.7.0 spec/bullet/ext/object_spec.rb
bullet-5.6.1 spec/bullet/ext/object_spec.rb