hchoroomi (owner)

Revisions

gist: 78635 Download_button fork
public
Public Clone URL: git://gist.github.com/78635.git
Embed All Files: show embed
categories_controller_spec.rb #
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
require File.dirname(__FILE__) + '/../spec_helper'
 
describe CategoriesController, "GET #index" do
  subject { controller }
 
  before(:each) { get :index }
  
  it { should assign_to(:categories) }
  it { should respond_with(:success) }
end
 
describe CategoriesController, "GET #show" do
  subject { controller }
 
  before(:each) do
    Category.should_receive(:find).with('1').and_return(mock_model(Category))
    get :show, :id => '1'
  end
 
  it { should assign_to(:category) }
  it { should respond_with(:success) }
end
 
describe CategoriesController, "GET #new" do
  subject { controller }
 
  before(:each) do
    Category.should_receive(:new).and_return(mock_model(Category))
    get :new
  end
  
  it { should assign_to(:category) }
  it { should respond_with(:success) }
end
 
describe CategoriesController, "GET #edit" do
  subject { controller }
 
  before(:each) do
    Category.should_receive(:find).with('1').and_return(mock_model(Category))
    get :edit, :id => '1'
  end
  
  it { should assign_to(:category) }
  it { should respond_with(:success) }
end
 
describe CategoriesController, "POST #create" do
  before(:each) do
    @category = mock_model(Category, :save => true)
    Category.should_receive(:new).with({}).and_return(@category)
  end
 
  def do_post
    post :create, :category => {}
  end
  
  describe CategoriesController, "(successful creation)" do
    subject { controller }
 
    before(:each) do
      @category.should_receive(:save).and_return(true)
      do_post
    end
    
    it { should assign_to(:category) }
    it { should set_the_flash }
    it { response.should redirect_to category_path(@category) }
  end
 
  describe CategoriesController, "(unsuccessful creation)" do
    subject { controller }
 
    before(:each) do
      @category.should_receive(:save).and_return(false)
      do_post
    end
    
    it { should_not set_the_flash }
    it { response.should render_template('new') }
  end
end
 
describe CategoriesController, "PUT #update" do
  before(:each) do
    @category = mock_model(Category, :update_attributes => true)
    Category.should_receive(:find).with('1').and_return(@category)
  end
 
  def do_put
    put :update, :id => '1', :category => {}
  end
  
  describe CategoriesController, "(successful creation)" do
    subject { controller }
 
    before(:each) do
      @category.should_receive(:update_attributes).and_return(true)
      do_put
    end
    
    it { should assign_to(:category) }
    it { should set_the_flash }
    it { response.should redirect_to category_path(@category) }
  end
 
  describe CategoriesController, "(unsuccessful creation)" do
    subject { controller }
 
    before(:each) do
      @category.should_receive(:update_attributes).and_return(false)
      do_put
    end
    
    it { should_not set_the_flash }
    it { response.should render_template('edit') }
  end
end
 
describe CategoriesController, "DELETE #destroy" do
  subject { controller }
 
  before(:each) do
    @category = mock_model(Category)
    Category.should_receive(:find).with('1').and_return(@category)
    @category.should_receive(:destroy)
    delete :destroy, :id => '1'
  end
  
  it { should assign_to(:category) }
  it { should respond_with(:redirect) }
  it { response.should redirect_to(categories_path)}
end