spec: xit spec where we need to know how to do
parent
a5474cfd51
commit
1525a7b95f
|
@ -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…
Reference in New Issue