Tests for team and group descriptions added
This commit is contained in:
parent
9959669f1c
commit
cf6d9a2222
5 changed files with 14 additions and 0 deletions
|
@ -25,11 +25,13 @@ class AdminGroups < Spinach::FeatureSteps
|
|||
|
||||
And 'submit form with new group info' do
|
||||
fill_in 'group_name', :with => 'gitlab'
|
||||
fill_in 'group_description', :with => 'Group description'
|
||||
click_button "Create group"
|
||||
end
|
||||
|
||||
Then 'I should see newly created group' do
|
||||
page.should have_content "Group: gitlab"
|
||||
page.should have_content "Group description"
|
||||
end
|
||||
|
||||
Then 'I should be redirected to group page' do
|
||||
|
|
|
@ -18,6 +18,7 @@ class AdminTeams < Spinach::FeatureSteps
|
|||
|
||||
And 'submit form with new team info' do
|
||||
fill_in 'user_team_name', with: 'gitlab'
|
||||
fill_in 'user_team_description', with: 'description'
|
||||
click_button 'Create team'
|
||||
end
|
||||
|
||||
|
@ -27,6 +28,7 @@ class AdminTeams < Spinach::FeatureSteps
|
|||
|
||||
And 'I should see newly created team' do
|
||||
page.should have_content "Team: gitlab"
|
||||
page.should have_content "description"
|
||||
end
|
||||
|
||||
When 'I visit admin teams page' do
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue