summaryrefslogtreecommitdiff
path: root/spec/requests/milestones_spec.rb
blob: f1d5023e6b479a8bb3873b764b9ac26c10334548 (plain)
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
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 { page.should have_content(project.milestones.last.title[0..10]) }
    it { page.should have_content(project.milestones.last.expires_at) }
  end
end