2015-04-26 12:48:37 +05:30
|
|
|
class Spinach::Features::ProjectFork < Spinach::FeatureSteps
|
2014-09-02 18:07:02 +05:30
|
|
|
include SharedAuthentication
|
|
|
|
include SharedPaths
|
|
|
|
include SharedProject
|
|
|
|
|
|
|
|
step 'I click link "Fork"' do
|
2015-09-11 14:41:01 +05:30
|
|
|
expect(page).to have_content "Shop"
|
2015-10-24 18:46:33 +05:30
|
|
|
click_link "Fork project"
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
step 'I am a member of project "Shop"' do
|
|
|
|
@project = create(:project, name: "Shop")
|
|
|
|
@project.team << [@user, :reporter]
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should see the forked project page' do
|
2015-09-25 12:07:36 +05:30
|
|
|
expect(page).to have_content "Forked from"
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
|
|
|
|
|
|
|
step 'I already have a project named "Shop" in my namespace' do
|
|
|
|
@my_project = create(:project, name: "Shop", namespace: current_user.namespace)
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should see a "Name has already been taken" warning' do
|
2015-09-11 14:41:01 +05:30
|
|
|
expect(page).to have_content "Name has already been taken"
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|
2015-04-26 12:48:37 +05:30
|
|
|
|
|
|
|
step 'I fork to my namespace' do
|
2015-09-11 14:41:01 +05:30
|
|
|
page.within '.fork-namespaces' do
|
2015-04-26 12:48:37 +05:30
|
|
|
click_link current_user.name
|
|
|
|
end
|
|
|
|
end
|
2016-01-14 18:37:52 +05:30
|
|
|
|
|
|
|
step 'I should see "New merge request"' do
|
|
|
|
expect(page).to have_content(/new merge request/i)
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I goto the Merge Requests page' do
|
|
|
|
page.within '.page-sidebar-expanded' do
|
|
|
|
click_link "Merge Requests"
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I click link "New merge request"' do
|
|
|
|
expect(page).to have_content(/new merge request/i)
|
|
|
|
click_link "New Merge Request"
|
|
|
|
end
|
|
|
|
|
|
|
|
step 'I should see the new merge request page for my namespace' do
|
|
|
|
current_path.should have_content(/#{current_user.namespace.name}/i)
|
|
|
|
end
|
2014-09-02 18:07:02 +05:30
|
|
|
end
|