1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/test/models/user_test.rb

16 lines
647 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-07-18 18:16:54 +02:00
require 'test_helper'
class UserTest < ActiveSupport::TestCase
test 'must create wallet and profiles after create user' do
u = User.create(username: 'user', email: 'userwallet@fabmanager.com', password: 'Testpassword1$', password_confirmation: 'Testpassword1$',
profile_attributes: { first_name: 'user', last_name: 'wallet', phone: '0123456789' },
statistic_profile_attributes: { gender: true, birthday: 18.years.ago })
2016-07-18 18:16:54 +02:00
assert u.wallet.present?
assert u.profile.present?
assert u.invoicing_profile.present?
assert u.statistic_profile.present?
2016-07-18 18:16:54 +02:00
end
end