36 lines
1.2 KiB
Ruby
36 lines
1.2 KiB
Ruby
Then /^I should see the role dropdown on the "([^"]*)"$/ do |user|
|
|
find(:css, "li.membership[data-role=#{user}] select").text.should == 'AdministratorDesignerAuthor'
|
|
end
|
|
|
|
Then /^I should see the role dropdown on myself$/ do
|
|
Then %{I should see the role dropdown on the "#{@member.role}"}
|
|
end
|
|
|
|
Then /^I should not see the role dropdown on the "([^"]*)"$/ do |user|
|
|
page.has_css?("li.membership[data-role=#{user}] select").should be_false
|
|
end
|
|
|
|
Then /^I should not see the role dropdown on myself$/ do
|
|
Then %{I should not see the role dropdown on the "#{@member.role}"}
|
|
end
|
|
|
|
Then /^I should not see any role dropdowns$/ do
|
|
page.has_css?('li.membership select').should be_false
|
|
end
|
|
|
|
Then /^I should see delete on the "([^"]*)"$/ do |role|
|
|
page.has_css?("li.membership[data-role=#{role}] .actions a.remove").should be_true
|
|
end
|
|
|
|
Then /^I should not see delete on the "([^"]*)"$/ do |role|
|
|
page.has_css?("li.membership[data-role=#{role}] .actions a.remove").should be_false
|
|
end
|
|
|
|
Then /^I should not see delete on myself$/ do
|
|
Then %{I should not see delete on the "#{@member.role}"}
|
|
end
|
|
|
|
Then /^I should not see any delete buttons$/ do
|
|
page.has_css?('li.membership .actions a.remove').should be_false
|
|
end
|