diff options
author | Azul <azul@leap.se> | 2013-09-20 14:22:28 +0200 |
---|---|---|
committer | Azul <azul@leap.se> | 2013-09-20 14:22:28 +0200 |
commit | 985406273233905868c70918bafd767d8870c76a (patch) | |
tree | 2b1ab7c9e89f2aaae379938430f40e5b3babfbbf /users/test/unit | |
parent | 13e91941396a74b6245dcb9d81b9cfa77861df95 (diff) | |
parent | 890c9e170fc038eccb46eca3c1ddcf6f05eaa53f (diff) |
Merge tag '0.2.3'
Diffstat (limited to 'users/test/unit')
-rw-r--r-- | users/test/unit/account_test.rb | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/users/test/unit/account_test.rb b/users/test/unit/account_test.rb index 39969c0..94a9980 100644 --- a/users/test/unit/account_test.rb +++ b/users/test/unit/account_test.rb @@ -9,15 +9,14 @@ class AccountTest < ActiveSupport::TestCase assert id = user.identity assert_equal user.email_address, id.address assert_equal user.email_address, id.destination - id.destroy - user.destroy + user.account.destroy end test "create and remove a user account" do assert_no_difference "Identity.count" do assert_no_difference "User.count" do user = Account.create(FactoryGirl.attributes_for(:user)) - Account.new(user).destroy + user.account.destroy end end end @@ -26,7 +25,7 @@ class AccountTest < ActiveSupport::TestCase user = Account.create(FactoryGirl.attributes_for(:user)) old_id = user.identity old_email = user.email_address - Account.new(user).update(FactoryGirl.attributes_for(:user)) + user.account.update(FactoryGirl.attributes_for(:user)) user.reload old_id.reload assert user.valid? @@ -37,9 +36,7 @@ class AccountTest < ActiveSupport::TestCase assert_equal user.email_address, id.destination assert_equal user.email_address, old_id.destination assert_equal old_email, old_id.address - old_id.destroy - id.destroy - user.destroy + user.account.destroy end end |