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:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-17 03:09:20 +0300
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2015-01-17 06:39:13 +0300
commitb9d09a0c5ee43a58f2c19b37f590b2124bb10a25 (patch)
tree351372c13bbfa4eae1b2ce7cab075c281cb4665b /features
parent4a49a937cdac3beb8e00373accfc5873e0d51b37 (diff)
Add tests to home page url redirect
Diffstat (limited to 'features')
-rw-r--r--features/admin/settings.feature4
-rw-r--r--features/steps/admin/settings.rb6
2 files changed, 6 insertions, 4 deletions
diff --git a/features/admin/settings.feature b/features/admin/settings.feature
index 8799c053ea2..8fdf0575c2c 100644
--- a/features/admin/settings.feature
+++ b/features/admin/settings.feature
@@ -5,5 +5,5 @@ Feature: Admin Settings
And I visit admin settings page
Scenario: Change application settings
- When I disable gravatars and save form
- Then I should be see gravatar disabled
+ When I modify settings and save form
+ Then I should see application settings saved
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