diff options
author | azul <azul@riseup.net> | 2013-01-14 11:05:52 -0800 |
---|---|---|
committer | azul <azul@riseup.net> | 2013-01-14 11:05:52 -0800 |
commit | ee2ea4ac8f4c6b0c3b09be6ed49e7a1faec7a9c1 (patch) | |
tree | 45eb6dcddd743de2b9f999d54751d9d4fc0fcbdd /users/test/integration/api | |
parent | 4fd47160e0c43695aada330154f41821099bdda0 (diff) | |
parent | 7b323c5dbd7171cf98f69ca159b5aa2174a5d069 (diff) |
Merge pull request #15 from leapcode/feature/test-data-with-faker
Test data with faker, using factory girl
Diffstat (limited to 'users/test/integration/api')
-rw-r--r-- | users/test/integration/api/account_flow_test.rb | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/users/test/integration/api/account_flow_test.rb b/users/test/integration/api/account_flow_test.rb index 7636f2b..b9e2a4e 100644 --- a/users/test/integration/api/account_flow_test.rb +++ b/users/test/integration/api/account_flow_test.rb @@ -12,10 +12,6 @@ class AccountFlowTest < ActiveSupport::TestCase OUTER_APP end - def teardown - Warden.test_reset! - end - def setup @login = "integration_test_user" User.find_by_login(@login).tap{|u| u.destroy if u} @@ -31,7 +27,8 @@ class AccountFlowTest < ActiveSupport::TestCase end def teardown - @user.destroy if @user # make sure we can run this test again + @user.destroy if @user + Warden.test_reset! end # this test wraps the api and implements the interface the ruby-srp client. |