You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
require 'rails_helper'
|
|
|
|
|
|
|
|
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
|