Commit 774af930 authored by Dmitriy Zaporozhets's avatar Dmitriy Zaporozhets

Remove go to dashboard test suite for group page and get rid of AR warning

Signed-off-by: default avatarDmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
parent d8440b30
...@@ -16,7 +16,7 @@ ...@@ -16,7 +16,7 @@
%li %li
= link_to edit_group_path(@group) do = link_to edit_group_path(@group) do
Edit Group Edit Group
- if access = @group.users.find(current_user) - if access = @group.users.find(current_user.id)
%li %li
= link_to leave_group_group_members_path(@group), = link_to leave_group_group_members_path(@group),
data: { confirm: leave_group_message(@group.name) }, method: :delete, title: 'Leave group' do data: { confirm: leave_group_message(@group.name) }, method: :delete, title: 'Leave group' do
......
...@@ -7,10 +7,6 @@ Feature: Groups ...@@ -7,10 +7,6 @@ Feature: Groups
When I visit group "NonExistentGroup" page When I visit group "NonExistentGroup" page
Then page status code should be 404 Then page status code should be 404
Scenario: I should have back to group button
When I visit group "Owned" page
Then I should see back to dashboard button
@javascript @javascript
Scenario: I should see group "Owned" dashboard list Scenario: I should see group "Owned" dashboard list
When I visit group "Owned" page When I visit group "Owned" page
......
...@@ -5,8 +5,10 @@ class Spinach::Features::GroupMilestones < Spinach::FeatureSteps ...@@ -5,8 +5,10 @@ class Spinach::Features::GroupMilestones < Spinach::FeatureSteps
include SharedUser include SharedUser
step 'I click on group milestones' do step 'I click on group milestones' do
page.within('.layout-nav') do
click_link 'Milestones' click_link 'Milestones'
end end
end
step 'I should see group milestones index page has no milestones' do step 'I should see group milestones index page has no milestones' do
expect(page).to have_content('No milestones to show') expect(page).to have_content('No milestones to show')
...@@ -84,7 +86,7 @@ class Spinach::Features::GroupMilestones < Spinach::FeatureSteps ...@@ -84,7 +86,7 @@ class Spinach::Features::GroupMilestones < Spinach::FeatureSteps
end end
step 'I click on the "Labels" tab' do step 'I click on the "Labels" tab' do
page.within('.nav-links') do page.within('.content .nav-links') do
page.find(:xpath, "//a[@href='#tab-labels']").click page.find(:xpath, "//a[@href='#tab-labels']").click
end end
end end
......
...@@ -4,10 +4,6 @@ class Spinach::Features::Groups < Spinach::FeatureSteps ...@@ -4,10 +4,6 @@ class Spinach::Features::Groups < Spinach::FeatureSteps
include SharedGroup include SharedGroup
include SharedUser include SharedUser
step 'I should see back to dashboard button' do
expect(page).to have_content 'Go to dashboard'
end
step 'I should see group "Owned"' do step 'I should see group "Owned"' do
expect(page).to have_content '@owned' expect(page).to have_content '@owned'
end end
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment