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

10 lines
436 B
Ruby
Raw Normal View History

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