diff options
| author | Robert Speicher <robert@gitlab.com> | 2016-03-15 14:33:14 +0000 |
|---|---|---|
| committer | Robert Speicher <robert@gitlab.com> | 2016-03-15 14:33:14 +0000 |
| commit | 90e91e28e40f2d5d5205e62f6e01e23af4da117f (patch) | |
| tree | b745cd4a914d2bef8dd9559f6aa8b2d0b15c7414 /features/steps/profile | |
| parent | ea7d062fa60e3e622288237fc66a815348bbcf36 (diff) | |
| parent | 8f21e2ae408a4ebd0e115846b9a639e7ce09a126 (diff) | |
| download | gitlab-ce-90e91e28e40f2d5d5205e62f6e01e23af4da117f.tar.gz | |
Merge branch 'application-settings' into 'master'
Applications tab on profile settings
Closes #13855
See merge request !3031
Diffstat (limited to 'features/steps/profile')
| -rw-r--r-- | features/steps/profile/profile.rb | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/features/steps/profile/profile.rb b/features/steps/profile/profile.rb index d9436e9e21a..fd9aaeb3b09 100644 --- a/features/steps/profile/profile.rb +++ b/features/steps/profile/profile.rb @@ -180,18 +180,14 @@ class Spinach::Features::Profile < Spinach::FeatureSteps end end - step 'I click on new application button' do - click_on 'New Application' - end - step 'I should see application form' do - expect(page).to have_content "New Application" + expect(page).to have_content "Add new application" end step 'I fill application form out and submit' do fill_in :doorkeeper_application_name, with: 'test' fill_in :doorkeeper_application_redirect_uri, with: 'https://test.com' - click_on "Submit" + click_on "Save application" end step 'I see application' do @@ -211,7 +207,7 @@ class Spinach::Features::Profile < Spinach::FeatureSteps step 'I change name of application and submit' do expect(page).to have_content "Edit application" fill_in :doorkeeper_application_name, with: 'test_changed' - click_on "Submit" + click_on "Save application" end step 'I see that application was changed' do |
