2017-10-30 01:44:23 +00:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
RSpec.describe Rating::Extension, ':rate' do
|
2018-01-16 03:14:05 +00:00
|
|
|
let!(:author) { create :author }
|
2017-10-30 01:44:23 +00:00
|
|
|
let!(:article) { create :article }
|
|
|
|
|
2017-11-02 18:55:46 +00:00
|
|
|
context 'with no scopeable' do
|
|
|
|
it 'delegates to rate object' do
|
2018-01-16 03:14:05 +00:00
|
|
|
expect(Rating::Rate).to receive(:create).with author: author, resource: article, scopeable: nil, value: 3
|
2017-10-30 01:44:23 +00:00
|
|
|
|
2018-01-16 03:14:05 +00:00
|
|
|
author.rate article, 3
|
2017-11-02 18:55:46 +00:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
context 'with scopeable' do
|
|
|
|
let!(:category) { build :category }
|
|
|
|
|
|
|
|
it 'delegates to rate object' do
|
2018-01-16 03:14:05 +00:00
|
|
|
expect(Rating::Rate).to receive(:create).with author: author, resource: article, scopeable: category, value: 3
|
2017-11-02 18:55:46 +00:00
|
|
|
|
2018-01-16 03:14:05 +00:00
|
|
|
author.rate article, 3, scope: category
|
2017-11-02 18:55:46 +00:00
|
|
|
end
|
2017-10-30 01:44:23 +00:00
|
|
|
end
|
|
|
|
end
|