A bit of spinach tests
This commit is contained in:
parent
ab344f31b6
commit
2f6603e581
11 changed files with 116 additions and 95 deletions
|
@ -13,6 +13,44 @@ module SharedProject
|
|||
@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("Advanced settings:")
|
||||
page.should have_content("Features:")
|
||||
end
|
||||
|
||||
def current_project
|
||||
@project ||= Project.first
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue