project.rb
1.49 KB
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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
module SharedProject
  include Spinach::DSL
  # Create a project without caring about what it's called
  And "I own a project" do
    @project = create(:project_with_code)
    @project.team << [@user, :master]
  end
  # Create a specific project called "Shop"
  And 'I own project "Shop"' do
    @project = Project.find_by_name "Shop"
    @project ||= create(:project_with_code, name: "Shop")
    @project.team << [@user, :master]
  end
  And 'project "Shop" has push event' do
    @project = Project.find_by_name("Shop")
    data = {
      before: "0000000000000000000000000000000000000000",
      after: "0220c11b9a3e6c69dc8fd35321254ca9a7b98f7e",
      ref: "refs/heads/new_design",
      user_id: @user.id,
      user_name: @user.name,
      repository: {
        name: @project.name,
        url: "localhost/rubinius",
        description: "",
        homepage: "localhost/rubinius",
        private: true
      }
    }
    @event = Event.create(
      project: @project,
      action: Event::PUSHED,
      data: data,
      author_id: @user.id
    )
  end
  Then 'I should see project "Shop" activity feed' do
    project = Project.find_by_name("Shop")
    page.should have_content "#{@user.name} pushed new branch new_design at #{project.name}"
  end
  Then 'I should see project settings' do
    current_path.should == edit_project_path(@project)
    page.should have_content("Project name is")
    page.should have_content("Features:")
  end
  def current_project
    @project ||= Project.first
  end
end