gitlabhq/features/steps/project/create_project.rb

21 lines
558 B
Ruby
Raw Normal View History

class CreateProject < Spinach::FeatureSteps
2012-09-10 17:35:03 +02:00
include SharedAuthentication
include SharedPaths
And 'fill project form with valid data' do
2013-01-04 20:45:30 +01:00
fill_in 'project_name', with: 'Empty'
click_button "Create project"
end
Then 'I should see project page' do
current_path.should == project_path(Project.last)
2013-01-04 20:45:30 +01:00
page.should have_content "Empty"
end
And 'I should see empty project instuctions' do
page.should have_content "git init"
page.should have_content "git remote"
page.should have_content Project.last.url_to_repo
end
end