mirror of
https://github.com/mastodon/mastodon.git
synced 2024-12-22 12:55:56 +01:00
Add coverage for CustomFilter#expires_in
method (#33142)
This commit is contained in:
parent
2381ed55d7
commit
be43b01eb1
1 changed files with 24 additions and 0 deletions
|
@ -27,4 +27,28 @@ RSpec.describe CustomFilter do
|
|||
it { is_expected.to normalize(:context).from(['home', 'notifications', 'public ', '']).to(%w(home notifications public)) }
|
||||
end
|
||||
end
|
||||
|
||||
describe '#expires_in' do
|
||||
subject { custom_filter.expires_in }
|
||||
|
||||
let(:custom_filter) { Fabricate.build(:custom_filter, expires_at: expires_at) }
|
||||
|
||||
context 'when expires_at is nil' do
|
||||
let(:expires_at) { nil }
|
||||
|
||||
it { is_expected.to be_nil }
|
||||
end
|
||||
|
||||
context 'when expires is beyond the end of the range' do
|
||||
let(:expires_at) { described_class::EXPIRATION_DURATIONS.last.from_now + 2.days }
|
||||
|
||||
it { is_expected.to be_nil }
|
||||
end
|
||||
|
||||
context 'when expires is before the start of the range' do
|
||||
let(:expires_at) { described_class::EXPIRATION_DURATIONS.first.from_now - 10.minutes }
|
||||
|
||||
it { is_expected.to eq(described_class::EXPIRATION_DURATIONS.first) }
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in a new issue