first pack of tests for milestones
This commit is contained in:
parent
23d950855d
commit
d98b183361
8 changed files with 145 additions and 48 deletions
51
spec/requests/milestones_spec.rb
Normal file
51
spec/requests/milestones_spec.rb
Normal file
|
@ -0,0 +1,51 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe "Milestones" do
|
||||
let(:project) { Factory :project }
|
||||
|
||||
before do
|
||||
login_as :user
|
||||
project.add_access(@user, :admin)
|
||||
|
||||
@milestone = Factory :milestone, :project => project
|
||||
@issue = Factory :issue, :project => project
|
||||
|
||||
@milestone.issues << @issue
|
||||
end
|
||||
|
||||
describe "GET /milestones" do
|
||||
before do
|
||||
visit project_milestones_path(project)
|
||||
end
|
||||
|
||||
subject { page }
|
||||
|
||||
it { should have_content(@milestone.title[0..10]) }
|
||||
it { should have_content(@milestone.expires_at) }
|
||||
it { should have_content("Browse Issues") }
|
||||
end
|
||||
|
||||
describe "GET /milestone/:id" do
|
||||
before do
|
||||
visit project_milestone_path(project, @milestone)
|
||||
end
|
||||
|
||||
subject { page }
|
||||
|
||||
it { should have_content(@milestone.title[0..10]) }
|
||||
it { should have_content(@milestone.expires_at) }
|
||||
it { should have_content("Browse Issues") }
|
||||
end
|
||||
|
||||
describe "GET /milestones/new" do
|
||||
before do
|
||||
visit new_project_milestone_path(project)
|
||||
fill_in "milestone_title", :with => "v2.3"
|
||||
click_button "Create milestone"
|
||||
end
|
||||
|
||||
it { current_path.should == project_milestone_path(project, project.milestones.last) }
|
||||
it { should have_content(@milestone.title[0..10]) }
|
||||
it { should have_content(@milestone.expires_at) }
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue