Fix subscription expiration condition (#2715)
* Fix subscription expiration condition * dry and add specmaster
parent
b9b78549f3
commit
6f75c8451d
@ -1,5 +1,19 @@ |
|||||||
require 'rails_helper' |
require 'rails_helper' |
||||||
|
|
||||||
RSpec.describe Subscription, type: :model do |
RSpec.describe Subscription, type: :model do |
||||||
|
let(:alice) { Fabricate(:account, username: 'alice') } |
||||||
|
|
||||||
|
subject { Fabricate(:subscription, account: alice) } |
||||||
|
|
||||||
|
describe '#expired?' do |
||||||
|
it 'return true when expires_at is past' do |
||||||
|
subject.expires_at = 2.days.ago |
||||||
|
expect(subject.expired?).to be true |
||||||
|
end |
||||||
|
|
||||||
|
it 'return false when expires_at is future' do |
||||||
|
subject.expires_at = 2.days.from_now |
||||||
|
expect(subject.expired?).to be false |
||||||
|
end |
||||||
|
end |
||||||
end |
end |
||||||
|
Loading…
Reference in new issue