debian-mirror-gitlab/features/steps/dashboard/group.rb

64 lines
1.9 KiB
Ruby
Raw Normal View History

2015-04-26 12:48:37 +05:30
class Spinach::Features::DashboardGroup < Spinach::FeatureSteps
2014-09-02 18:07:02 +05:30
include SharedAuthentication
include SharedGroup
include SharedPaths
include SharedUser
# Leave
step 'I click on the "Leave" button for group "Owned"' do
2015-04-26 12:48:37 +05:30
find(:css, 'li', text: "Owner").find(:css, 'i.fa.fa-sign-out').click
2014-09-02 18:07:02 +05:30
# poltergeist always confirms popups.
end
step 'I click on the "Leave" button for group "Guest"' do
2015-04-26 12:48:37 +05:30
find(:css, 'li', text: "Guest").find(:css, 'i.fa.fa-sign-out').click
2014-09-02 18:07:02 +05:30
# poltergeist always confirms popups.
end
step 'I should not see the "Leave" button for group "Owned"' do
2015-04-26 12:48:37 +05:30
find(:css, 'li', text: "Owner").should_not have_selector(:css, 'i.fa.fa-sign-out')
2014-09-02 18:07:02 +05:30
# poltergeist always confirms popups.
end
step 'I should not see the "Leave" button for groupr "Guest"' do
2015-04-26 12:48:37 +05:30
find(:css, 'li', text: "Guest").should_not have_selector(:css, 'i.fa.fa-sign-out')
2014-09-02 18:07:02 +05:30
# poltergeist always confirms popups.
end
step 'I should see group "Owned" in group list' do
page.should have_content("Owned")
end
step 'I should not see group "Owned" in group list' do
page.should_not have_content("Owned")
end
step 'I should see group "Guest" in group list' do
page.should have_content("Guest")
end
step 'I should not see group "Guest" in group list' do
page.should_not have_content("Guest")
end
2015-04-26 12:48:37 +05:30
step 'I click new group link' do
click_link "New Group"
end
step 'submit form with new group "Samurai" info' do
fill_in 'group_path', with: 'Samurai'
fill_in 'group_description', with: 'Tokugawa Shogunate'
click_button "Create group"
end
step 'I should be redirected to group "Samurai" page' do
current_path.should == group_path(Group.find_by(name: 'Samurai'))
end
step 'I should see newly created group "Samurai"' do
page.should have_content "Samurai"
page.should have_content "Tokugawa Shogunate"
end
2014-09-02 18:07:02 +05:30
end