A bit of spinach tests
This commit is contained in:
parent
ab344f31b6
commit
2f6603e581
11 changed files with 116 additions and 95 deletions
|
@ -1,6 +1,7 @@
|
|||
class Dashboard < Spinach::FeatureSteps
|
||||
include SharedAuthentication
|
||||
include SharedPaths
|
||||
include SharedProject
|
||||
|
||||
Then 'I should see "New Project" link' do
|
||||
page.should have_link "New Project"
|
||||
|
@ -10,11 +11,6 @@ class Dashboard < Spinach::FeatureSteps
|
|||
page.should have_link "Shop"
|
||||
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 last push widget' do
|
||||
page.should have_content "You pushed to new_design"
|
||||
page.should have_link "Create Merge Request"
|
||||
|
@ -59,11 +55,6 @@ class Dashboard < Spinach::FeatureSteps
|
|||
page.should have_content "John Doe left project at Shop"
|
||||
end
|
||||
|
||||
And 'I own project "Shop"' do
|
||||
@project = create :project, name: 'Shop'
|
||||
@project.team << [@user, :master]
|
||||
end
|
||||
|
||||
And 'I have group with projects' do
|
||||
@group = create(:group)
|
||||
@project = create(:project, group: @group)
|
||||
|
@ -72,32 +63,6 @@ class Dashboard < Spinach::FeatureSteps
|
|||
@project.team << [current_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 groups list' do
|
||||
Group.all.each do |group|
|
||||
page.should have_link group.name
|
||||
|
@ -112,5 +77,4 @@ class Dashboard < Spinach::FeatureSteps
|
|||
Then 'I should see 1 project at group list' do
|
||||
page.find('span.last_activity/span').should have_content('1')
|
||||
end
|
||||
|
||||
end
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue