2012-09-10 14:34:01 +02:00
|
|
|
class ProjectMilestones < Spinach::FeatureSteps
|
2012-09-10 17:35:03 +02:00
|
|
|
include SharedAuthentication
|
|
|
|
include SharedProject
|
|
|
|
include SharedPaths
|
|
|
|
|
2012-09-10 14:34:01 +02:00
|
|
|
Then 'I should see milestone "v2.2"' do
|
|
|
|
milestone = @project.milestones.find_by_title("v2.2")
|
|
|
|
page.should have_content(milestone.title[0..10])
|
|
|
|
page.should have_content(milestone.expires_at)
|
|
|
|
page.should have_content("Browse Issues")
|
|
|
|
end
|
|
|
|
|
|
|
|
Given 'I click link "v2.2"' do
|
|
|
|
click_link "v2.2"
|
|
|
|
end
|
|
|
|
|
|
|
|
Given 'I click link "New Milestone"' do
|
|
|
|
click_link "New Milestone"
|
|
|
|
end
|
|
|
|
|
|
|
|
And 'I submit new milestone "v2.3"' do
|
|
|
|
fill_in "milestone_title", :with => "v2.3"
|
|
|
|
click_button "Create milestone"
|
|
|
|
end
|
|
|
|
|
|
|
|
Then 'I should see milestone "v2.3"' do
|
|
|
|
milestone = @project.milestones.find_by_title("v2.3")
|
|
|
|
page.should have_content(milestone.title[0..10])
|
|
|
|
page.should have_content(milestone.expires_at)
|
|
|
|
page.should have_content("Browse Issues")
|
|
|
|
end
|
|
|
|
|
|
|
|
And 'project "Shop" has milestone "v2.2"' do
|
|
|
|
project = Project.find_by_name("Shop")
|
|
|
|
milestone = Factory :milestone, :title => "v2.2", :project => project
|
|
|
|
|
2012-09-10 17:35:03 +02:00
|
|
|
3.times { Factory :issue, :project => project, :milestone => milestone }
|
2012-09-10 14:34:01 +02:00
|
|
|
end
|
|
|
|
end
|