diff options
author | ysksn <bluewhale1982@gmail.com> | 2017-11-19 12:15:17 +0900 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2017-11-19 04:15:17 +0100 |
commit | 9d9b1aff1efc05270c50e94a171258c615c8b09a (patch) | |
tree | 8cb90673c4d841a2c8438790727b1a8757376ebc /spec | |
parent | bfdcf76a6481476e84fde34c3dedc86d267bcbf7 (diff) |
Add tests for Status#title (#5718)
Diffstat (limited to 'spec')
-rw-r--r-- | spec/models/status_spec.rb | 27 |
1 files changed, 25 insertions, 2 deletions
diff --git a/spec/models/status_spec.rb b/spec/models/status_spec.rb index d58ff5019..4b5c20871 100644 --- a/spec/models/status_spec.rb +++ b/spec/models/status_spec.rb @@ -83,8 +83,31 @@ RSpec.describe Status, type: :model do end describe '#title' do - it 'is a shorter version of the content' do - expect(subject.title).to be_a String + # rubocop:disable Style/InterpolationCheck + + let(:account) { subject.account } + + context 'if destroyed?' do + it 'returns "#{account.acct} deleted status"' do + subject.destroy! + expect(subject.title).to eq "#{account.acct} deleted status" + end + end + + context 'unless destroyed?' do + context 'if reblog?' do + it 'returns "#{account.acct} shared a status by #{reblog.account.acct}"' do + reblog = subject.reblog = other + expect(subject.title).to eq "#{account.acct} shared a status by #{reblog.account.acct}" + end + end + + context 'unless reblog?' do + it 'returns "New status by #{account.acct}"' do + subject.reblog = nil + expect(subject.title).to eq "New status by #{account.acct}" + end + end end end |