diff options
author | Jacob Schatz <jschatz1@gmail.com> | 2016-04-07 21:20:16 +0000 |
---|---|---|
committer | Jacob Schatz <jschatz1@gmail.com> | 2016-04-07 21:20:16 +0000 |
commit | f2b7cd443566f6ceefcbecbd52c8484afe264402 (patch) | |
tree | 5d83db1c0eeefb4e7a94178b972d8f5c43b9f758 /features/steps/project/project.rb | |
parent | 4361cc395cb5b9574286dee09ac55e49f394e50e (diff) | |
download | gitlab-ce-f2b7cd443566f6ceefcbecbd52c8484afe264402.tar.gz |
Revert "Merge branch 'new-navigation-prototype' into 'master'"
This reverts merge request !3494
Diffstat (limited to 'features/steps/project/project.rb')
-rw-r--r-- | features/steps/project/project.rb | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/features/steps/project/project.rb b/features/steps/project/project.rb index 8f1d4a223a9..ef185861e00 100644 --- a/features/steps/project/project.rb +++ b/features/steps/project/project.rb @@ -114,9 +114,7 @@ class Spinach::Features::Project < Spinach::FeatureSteps end step 'I should not see "Snippets" button' do - page.within '.nav-secondary' do - expect(page).not_to have_link 'Snippets' - end + expect(page).not_to have_link 'Snippets' end step 'project "Shop" belongs to group' do @@ -125,6 +123,14 @@ class Spinach::Features::Project < Spinach::FeatureSteps @project.save! end + step 'I should see back to dashboard button' do + expect(page).to have_content 'Go to dashboard' + end + + step 'I should see back to group button' do + expect(page).to have_content 'Go to group' + end + step 'I click notifications drop down button' do click_link 'notifications-button' end |