summaryrefslogtreecommitdiff
path: root/features/steps
diff options
context:
space:
mode:
authorPhil Hughes <me@iamphill.com>2016-03-01 14:37:49 +0000
committerPhil Hughes <me@iamphill.com>2016-03-04 09:06:07 +0000
commitc2377a11957c6e5f8514ff0d68b2af343d3427d0 (patch)
treea0622307daa02c147d839e18a552baea5776d55d /features/steps
parent33ba32e6cc12eb8a8bddd957bb99bd2df7628a70 (diff)
downloadgitlab-ce-c2377a11957c6e5f8514ff0d68b2af343d3427d0.tar.gz
Fixed failing application settings tests
Diffstat (limited to 'features/steps')
-rw-r--r--features/steps/profile/profile.rb10
1 files changed, 3 insertions, 7 deletions
diff --git a/features/steps/profile/profile.rb b/features/steps/profile/profile.rb
index 0c60328583a..b7d0a17b98e 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