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:
authorAndrew8xx8 <avk@8xx8.ru>2013-02-19 23:01:57 +0400
committerAndrew8xx8 <avk@8xx8.ru>2013-02-28 17:15:22 +0400
commitcf6d9a222213e37c9490bd30ae3a9971ac1baff5 (patch)
treef7b2481d7b232f3c556f49ff5bcb349cc1f28db4 /features/steps/group
parent9959669f1cb533e14e5df8d240c7560a2f258f84 (diff)
Tests for team and group descriptions added
Diffstat (limited to 'features/steps/group')
-rw-r--r--features/steps/group/group.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/features/steps/group/group.rb b/features/steps/group/group.rb
index 5cfa4756ac3..3438ad8ddab 100644
--- a/features/steps/group/group.rb
+++ b/features/steps/group/group.rb
@@ -70,11 +70,13 @@ class Groups < Spinach::FeatureSteps
And 'submit form with new group info' do
fill_in 'group_name', :with => 'Samurai'
+ fill_in 'group_description', :with => 'Tokugawa Shogunate'
click_button "Create group"
end
Then 'I should see newly created group' do
page.should have_content "Samurai"
+ page.should have_content "Tokugawa Shogunate"
page.should have_content "You will only see events from projects in this group"
end