summaryrefslogtreecommitdiff
path: root/features/steps/groups.rb
diff options
context:
space:
mode:
authorDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-12-22 15:02:47 +0200
committerDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>2014-12-22 15:02:47 +0200
commit1f2628fe2118642b467e93a362cebb11ca780a40 (patch)
treef300387fb569efecda864f0c7ef74f5c415be688 /features/steps/groups.rb
parent52a8e5c01a2a5377dbd51587f8197c49b17430b3 (diff)
downloadgitlab-ce-1f2628fe2118642b467e93a362cebb11ca780a40.tar.gz
Allow Group path to be changed at the same time as name
Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
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 616a297db99..e5b73e53967 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
@@ -94,6 +94,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