1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-28 09:24:24 +01:00
fab-manager/test/models/statistic_profile_prepaid_pack_test.rb

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