mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
14 lines
484 B
Ruby
14 lines
484 B
Ruby
# frozen_string_literal: true
|
|
|
|
require 'test_helper'
|
|
|
|
class StatisticProfilePrepaidPackTest < ActiveSupport::TestCase
|
|
test 'prepaid pack have a expries date' do
|
|
prepaid_pack = PrepaidPack.first
|
|
user = User.find_by(username: 'jdupond')
|
|
p = StatisticProfilePrepaidPack.create!(prepaid_pack: prepaid_pack, statistic_profile: user.statistic_profile)
|
|
expires_at = 12.months.from_now
|
|
assert p.expires_at.strftime('%Y-%m-%d'), expires_at.strftime('%Y-%m-%d')
|
|
end
|
|
end
|