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 <dzaporozhets@gitlab.com>2014-12-24 16:27:26 +0300
committerDmitriy Zaporozhets <dzaporozhets@gitlab.com>2014-12-24 16:27:26 +0300
commit5cf2bd4c997d84e9a02d722d6ba870c24b06cc0f (patch)
tree6175021f35173b865cfa436548a92a7995368ea0 /features/steps/groups.rb
parentfe68c45aa566b436a122c1598c58006d37472e8d (diff)
parentf775809910a2c8ebec1887ec39ba33325d00171a (diff)
Merge branch 'project-path' into 'master'
Project path Fixes gitlab/gitlabhq#1781, gitlab/gitlabhq#1763 See merge request !1337
Diffstat (limited to 'features/steps/groups.rb')
-rw-r--r--features/steps/groups.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/features/steps/groups.rb b/features/steps/groups.rb
index 66a32a51d75..0bd7a32f5cb 100644
--- a/features/steps/groups.rb
+++ b/features/steps/groups.rb
@@ -77,7 +77,7 @@ class Spinach::Features::Groups < Spinach::FeatureSteps
end
step 'submit form with new group "Samurai" info' do
- fill_in 'group_name', with: 'Samurai'
+ fill_in 'group_path', with: 'Samurai'
fill_in 'group_description', with: 'Tokugawa Shogunate'
click_button "Create group"
end
@@ -93,6 +93,7 @@ class Spinach::Features::Groups < Spinach::FeatureSteps
step 'I change group "Owned" name to "new-name"' do
fill_in 'group_name', with: 'new-name'
+ fill_in 'group_path', with: 'new-name'
click_button "Save group"
end