Sha256: 0afa8ef594b5bdfbefd305ca9ea2c5d2ed908341a17d7b8adb759140fe943b9c

Contents?: true

Size: 1.03 KB

Versions: 5

Compression:

Stored size: 1.03 KB

Contents

# frozen_string_literal: true

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(%i[category_id writer_id])
      expect(post.primary_key_value).to eq("#{post.category_id},#{post.writer_id}")
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
bullet-5.9.0 spec/bullet/ext/object_spec.rb
bullet-5.8.1 spec/bullet/ext/object_spec.rb
bullet-5.8.0 spec/bullet/ext/object_spec.rb
bullet-5.7.6 spec/bullet/ext/object_spec.rb
bullet-5.7.5 spec/bullet/ext/object_spec.rb