summaryrefslogtreecommitdiff
path: root/features/steps/project/fork.rb
blob: 878ddea46ff5a9e9666fd86670dba5a790d16f32 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
class Spinach::Features::ProjectFork < Spinach::FeatureSteps
  include SharedAuthentication
  include SharedPaths
  include SharedProject

  step 'I click link "Fork"' do
    expect(page).to have_content "Shop"
    click_link "Fork project"
  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
    expect(page).to have_content "Forked from"
  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
    expect(page).to have_content "Name has already been taken"
  end

  step 'I fork to my namespace' do
    page.within '.fork-namespaces' do
      click_link current_user.name
    end
  end

  step 'I should see "New Merge Request"' do
    expect(page).to have_content "New Merge Request"
  end

  step 'I goto the Merge Requests page' do
    page.within '.page-sidebar-expanded' do
      click_link "Merge Requests"
    end
  end
end