Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Speicher <robert@gitlab.com>2016-03-15 17:33:14 +0300
committerRobert Speicher <robert@gitlab.com>2016-03-15 17:33:14 +0300
commit90e91e28e40f2d5d5205e62f6e01e23af4da117f (patch)
treeb745cd4a914d2bef8dd9559f6aa8b2d0b15c7414 /features/steps
parentea7d062fa60e3e622288237fc66a815348bbcf36 (diff)
parent8f21e2ae408a4ebd0e115846b9a639e7ce09a126 (diff)
Merge branch 'application-settings' into 'master'
Applications tab on profile settings Closes #13855 See merge request !3031
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 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