summaryrefslogtreecommitdiff
path: root/features/steps/dashboard/new_project_top_menu.rb
blob: 364be964efd6d396f3f450e34e7538292f01d242 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
class Spinach::Features::NewProjectTopMenu < Spinach::FeatureSteps
  include SharedAuthentication
  include SharedPaths
  include SharedProject

  step 'I click "New project" in top right menu' do
    page.within '.header-content' do
      click_link "New project"
    end
  end

  step 'I see "New Project" page' do
    expect(page).to have_content('Project path')
    expect(page).to have_content('Project name')
  end

end