Implement pending specs on Status

Implement the two pending specs on `Status`: `reblogs_count` and
`favourites_count`.
This commit is contained in:
Joël Quenneville 2017-04-07 15:30:36 -04:00
parent 4e41cd9ab8
commit 4fdeac21f4
1 changed files with 12 additions and 2 deletions

View File

@ -91,10 +91,20 @@ RSpec.describe Status, type: :model do
end
describe '#reblogs_count' do
pending
it 'is the number of reblogs' do
Fabricate(:status, account: bob, reblog: subject)
Fabricate(:status, account: alice, reblog: subject)
expect(subject.reblogs_count).to eq 2
end
end
describe '#favourites_count' do
pending
it 'is the number of favorites' do
Fabricate(:favourite, account: bob, status: subject)
Fabricate(:favourite, account: alice, status: subject)
expect(subject.favourites_count).to eq 2
end
end
end