diff options
Diffstat (limited to 'users/test/integration/browser')
-rw-r--r-- | users/test/integration/browser/account_test.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/users/test/integration/browser/account_test.rb b/users/test/integration/browser/account_test.rb index f3a78ed..8b214a4 100644 --- a/users/test/integration/browser/account_test.rb +++ b/users/test/integration/browser/account_test.rb @@ -12,6 +12,10 @@ class AccountTest < BrowserIntegrationTest click_on 'Logout' assert page.has_content?("Sign Up") assert_equal '/', current_path + assert user = User.find_by_login(username) + assert id = user.identity + id.destroy + user.destroy end # trying to seed an invalid A for srp login @@ -24,6 +28,7 @@ class AccountTest < BrowserIntegrationTest click_on 'Log In' assert page.has_content?("Invalid random key") assert page.has_no_content?("Welcome") + user.destroy end test "reports internal server errors" do |