41 lines
1.2 KiB
Ruby
41 lines
1.2 KiB
Ruby
# frozen_string_literal: true
|
|
|
|
require 'rails_helper'
|
|
|
|
RSpec.describe Rating::Rate, ':rate_for' do
|
|
let!(:user) { create :user }
|
|
let!(:article) { create :article }
|
|
|
|
context 'with no scopeable' do
|
|
context 'when rate does not exist' do
|
|
specify { expect(described_class.rate_for(author: user, resource: article)).to eq nil }
|
|
end
|
|
|
|
context 'when rate does not exist' do
|
|
before { described_class.create author: user, resource: article, value: 3 }
|
|
|
|
it 'returns the record' do
|
|
expect(described_class.rate_for(author: user, resource: article)).to eq described_class.last
|
|
end
|
|
end
|
|
end
|
|
|
|
context 'with scopeable' do
|
|
let!(:category) { create :category }
|
|
|
|
context 'when rate does not exist' do
|
|
specify { expect(described_class.rate_for(author: user, resource: article, scopeable: category)).to eq nil }
|
|
end
|
|
|
|
context 'when rate does not exist' do
|
|
before { described_class.create author: user, resource: article, scopeable: category, value: 3 }
|
|
|
|
it 'returns the record' do
|
|
query = described_class.rate_for(author: user, resource: article, scopeable: category)
|
|
|
|
expect(query).to eq described_class.last
|
|
end
|
|
end
|
|
end
|
|
end
|