spec: xit spec where we need to know how to do
This commit is contained in:
parent
a5474cfd51
commit
1525a7b95f
21
spec/config/configure_spec.rb
Normal file
21
spec/config/configure_spec.rb
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
# frozen_string_literal: true
|
||||||
|
|
||||||
|
require 'rails_helper'
|
||||||
|
|
||||||
|
RSpec.describe Rating::Config, '.configure' do
|
||||||
|
before do
|
||||||
|
Rating.configure do |config|
|
||||||
|
config.models rate: 'Review', rating: 'ReviewRating'
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
|
let!(:author) { create :author }
|
||||||
|
let!(:resource) { create :article }
|
||||||
|
|
||||||
|
xit 'changes the rating models' do
|
||||||
|
author.rate resource, 5
|
||||||
|
|
||||||
|
expect(Review.count).to eq 1
|
||||||
|
expect(ReviewRating.count).to eq 1
|
||||||
|
end
|
||||||
|
end
|
Loading…
x
Reference in New Issue
Block a user