Fix admin:groups test

This commit is contained in:
Dmitriy Zaporozhets 2013-06-20 13:29:17 +03:00
parent f47ba909a2
commit 2864aca48c
2 changed files with 6 additions and 3 deletions

View File

@ -83,7 +83,7 @@
Users from #{@group.name} Group
%small
(#{@group.users_groups.count})
%ul.well-list
%ul.well-list.group-users-list
- @group.users_groups.order('group_access DESC').each do |member|
- user = member.user
%li{class: dom_class(user)}

View File

@ -43,13 +43,16 @@ class AdminGroups < Spinach::FeatureSteps
user = User.find_by_name("John")
select2(user.id, from: "#user_ids", multiple: true)
within "#new_team_member" do
select "Reporter", from: "project_access"
select "Reporter", from: "group_access"
end
click_button "Add users into group"
end
Then 'I should see "John" in team list in every project as "Reporter"' do
user = User.find_by_name("John")
within ".group-users-list" do
page.should have_content "John"
page.should have_content "Reporter"
end
end
protected