diff options
author | Claire <claire.github-309c@sitedethib.com> | 2021-10-13 15:50:24 +0200 |
---|---|---|
committer | Claire <claire.github-309c@sitedethib.com> | 2021-10-13 15:50:24 +0200 |
commit | 1665b842856811c16b904c3b99be6b141a0e1c7b (patch) | |
tree | 6fba595782a93008ed3dd6f3ac9e19b7271df6b3 /spec/models | |
parent | 022006577027ca040f4411489821f2e3311f0db6 (diff) | |
parent | 5159ba26e485daaeded2288c1b02bd1e516e1ca6 (diff) |
Merge branch 'main' into glitch-soc/merge-upstream
Conflicts: - `package.json`: Not really a conflict, just a glitch-soc-only dependency textually too close to an updated upstream one. - `yarn.lock`: Not really a conflict, just a glitch-soc-only dependency textually too close to an updated upstream one.
Diffstat (limited to 'spec/models')
-rw-r--r-- | spec/models/media_attachment_spec.rb | 20 |
1 files changed, 16 insertions, 4 deletions
diff --git a/spec/models/media_attachment_spec.rb b/spec/models/media_attachment_spec.rb index 5dbb3d206..7360b23cf 100644 --- a/spec/models/media_attachment_spec.rb +++ b/spec/models/media_attachment_spec.rb @@ -62,11 +62,23 @@ RSpec.describe MediaAttachment, type: :model do end describe '#to_param' do - let(:media_attachment) { Fabricate(:media_attachment) } - let(:shortcode) { media_attachment.shortcode } + let(:media_attachment) { Fabricate(:media_attachment, shortcode: shortcode) } + let(:shortcode) { nil } - it 'returns shortcode' do - expect(media_attachment.to_param).to eq shortcode + context 'when media attachment has a shortcode' do + let(:shortcode) { 'foo' } + + it 'returns shortcode' do + expect(media_attachment.to_param).to eq shortcode + end + end + + context 'when media attachment does not have a shortcode' do + let(:shortcode) { nil } + + it 'returns string representation of id' do + expect(media_attachment.to_param).to eq media_attachment.id.to_s + end end end |