diff options
author | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-12-02 13:29:24 +0200 |
---|---|---|
committer | Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com> | 2012-12-02 13:29:24 +0200 |
commit | 46bf3a094988327b08c88006c694f0a0a15f7da2 (patch) | |
tree | 82458b24bc2d77b1f711bc6579d39080748ab972 /features | |
parent | 2be5e6d44347dfb6374b4b2c87a953da06d6167d (diff) | |
download | gitlab-ce-46bf3a094988327b08c88006c694f0a0a15f7da2.tar.gz |
Refactored profile to resource. Added missing flash notice on successfull updated. Update username via ajax
Diffstat (limited to 'features')
-rw-r--r-- | features/steps/shared/paths.rb | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/features/steps/shared/paths.rb b/features/steps/shared/paths.rb index 33a94027472..a12576288df 100644 --- a/features/steps/shared/paths.rb +++ b/features/steps/shared/paths.rb @@ -54,7 +54,7 @@ module SharedPaths end Given 'I visit profile account page' do - visit profile_account_path + visit account_profile_path end Given 'I visit profile SSH keys page' do @@ -62,15 +62,11 @@ module SharedPaths end Given 'I visit profile design page' do - visit profile_design_path + visit design_profile_path end Given 'I visit profile history page' do - visit profile_history_path - end - - Given 'I visit profile token page' do - visit profile_token_path + visit history_profile_path end # ---------------------------------------- |