summaryrefslogtreecommitdiff
path: root/features/steps/admin
diff options
context:
space:
mode:
Diffstat (limited to 'features/steps/admin')
-rw-r--r--features/steps/admin/settings.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/features/steps/admin/settings.rb b/features/steps/admin/settings.rb
index e8168e85def..c2d0d2a3fa3 100644
--- a/features/steps/admin/settings.rb
+++ b/features/steps/admin/settings.rb
@@ -4,13 +4,15 @@ class Spinach::Features::AdminSettings < Spinach::FeatureSteps
include SharedAdmin
include Gitlab::CurrentSettings
- step 'I disable gravatars and save form' do
+ step 'I modify settings and save form' do
uncheck 'Gravatar enabled'
+ fill_in 'Home page url', with: 'https://about.gitlab.com/'
click_button 'Save'
end
- step 'I should be see gravatar disabled' do
+ step 'I should see application settings saved' do
current_application_settings.gravatar_enabled.should be_false
+ current_application_settings.home_page_url.should == 'https://about.gitlab.com/'
page.should have_content 'Application settings saved successfully'
end
end