test reanimated
This commit is contained in:
parent
c8bf5905bf
commit
655b836b2a
2 changed files with 4 additions and 6 deletions
|
@ -20,7 +20,6 @@ Feature: Groups
|
|||
|
||||
Scenario: I should add user to projects in Group
|
||||
Given I have new user "John"
|
||||
When I visit group page
|
||||
When I visit group people page
|
||||
When I select user "John" from list with role "Reporter"
|
||||
And I select user "John" from list with role "Reporter"
|
||||
Then I should see user "John" in team list
|
||||
|
|
|
@ -9,7 +9,7 @@ class Groups < Spinach::FeatureSteps
|
|||
end
|
||||
|
||||
And 'I have group with projects' do
|
||||
@group = create(:group)
|
||||
@group = create(:group, owner: current_user)
|
||||
@project = create(:project, group: @group)
|
||||
@event = create(:closed_issue_event, project: @project)
|
||||
|
||||
|
@ -36,7 +36,7 @@ class Groups < Spinach::FeatureSteps
|
|||
create(:user, name: "John")
|
||||
end
|
||||
|
||||
When 'I select user "John" from list with role "Reporter"' do
|
||||
And 'I select user "John" from list with role "Reporter"' do
|
||||
user = User.find_by_name("John")
|
||||
within "#new_team_member" do
|
||||
select user.name, :from => "user_ids"
|
||||
|
@ -46,8 +46,7 @@ class Groups < Spinach::FeatureSteps
|
|||
end
|
||||
|
||||
Then 'I should see user "John" in team list' do
|
||||
user = User.find_by_name("John")
|
||||
projects_with_access = find(".ui-box .well-list li")
|
||||
projects_with_access = find(".ui-box .well-list")
|
||||
projects_with_access.should have_content("John")
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue