spec: removes duplicated

main
Washington Botelho 2019-12-19 16:38:44 -03:00
parent d496aa6075
commit 5b5b638cf7
No known key found for this signature in database
GPG Key ID: 5DE4F42A8F073617
1 changed files with 0 additions and 23 deletions

View File

@ -62,29 +62,6 @@ RSpec.describe Rating::Extension, 'unscoped_rating' do
end end
end end
context 'when is true' do
let!(:resource) { create :global }
it 'groups in the same line record' do
author_1.rate resource, 1, scope: scope
author_2.rate resource, 2, scope: scope
author_1.rate resource, 5
ratings = Rating::Rating.all.order('id')
expect(ratings.size).to eq 1
rating = ratings[0]
expect(rating.average.to_s).to eq '2.6666666666666667'
expect(rating.estimate.to_s).to eq '2.6666666666666667'
expect(rating.resource).to eq resource
expect(rating.scopeable).to eq nil
expect(rating.sum).to eq 8
expect(rating.total).to eq 3
end
end
context 'when is true and have a non scopeable record first on database' do context 'when is true and have a non scopeable record first on database' do
let!(:resource) { create :global } let!(:resource) { create :global }