diff options
author | Shel R <Yiskah.Raphen@gmail.com> | 2017-04-07 22:33:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-04-07 22:33:40 -0400 |
commit | d7d165db5b1b7b1959a36e1f0e3da875befc2574 (patch) | |
tree | 5be0ded23cf8a3190a3173bd5b16f4c4af77207f /spec/models/status_spec.rb | |
parent | 73b8e67f4b103fc3400064d153807d6d88f758d4 (diff) | |
parent | d7f4300ee3ff44a42453ea8042034d651a9789da (diff) |
Merge branch 'master' into add-infinimatix.net-instance
Diffstat (limited to 'spec/models/status_spec.rb')
-rw-r--r-- | spec/models/status_spec.rb | 25 |
1 files changed, 23 insertions, 2 deletions
diff --git a/spec/models/status_spec.rb b/spec/models/status_spec.rb index b9d079521..000bee0f5 100644 --- a/spec/models/status_spec.rb +++ b/spec/models/status_spec.rb @@ -91,10 +91,31 @@ 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 + + describe '#proper' do + it 'is itself for original statuses' do + expect(subject.proper).to eq subject + end + + it 'is the source status for reblogs' do + subject.reblog = other + expect(subject.proper).to eq other + end end end |