diff options
Diffstat (limited to 'users/test')
| -rw-r--r-- | users/test/integration/browser/account_test.rb | 8 | 
1 files changed, 8 insertions, 0 deletions
diff --git a/users/test/integration/browser/account_test.rb b/users/test/integration/browser/account_test.rb index 8e03856..b712c95 100644 --- a/users/test/integration/browser/account_test.rb +++ b/users/test/integration/browser/account_test.rb @@ -38,6 +38,14 @@ class AccountTest < BrowserIntegrationTest      assert page.has_no_selector? 'input.btn-primary.disabled'    end +  test "account destruction" do +    username, password = submit_signup +    click_on I18n.t('account_settings') +    click_on I18n.t('destroy_my_account') +    page.save_screenshot('/tmp/destroy.png') +    assert page.has_content?(I18n.t('account_destroyed')) +  end +    test "change password" do      username, password = submit_signup      click_on "Account Settings"  | 
