Skip to content
Snippets Groups Projects
Commit 2864aca4 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets
Browse files

Fix admin:groups test

parent f47ba909
No related branches found
No related tags found
No related merge requests found
Loading
Loading
@@ -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)}
Loading
Loading
Loading
Loading
@@ -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
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment