rspec-rails 1.1.5
Sign up to get free protection for your applications and to get access to all the features.
- data/History.txt +57 -0
- data/Manifest.txt +158 -0
- data/README.txt +81 -0
- data/Rakefile +39 -0
- data/UPGRADE +7 -0
- data/generators/rspec/CHANGES +1 -0
- data/generators/rspec/rspec_generator.rb +40 -0
- data/generators/rspec/templates/all_stories.rb +4 -0
- data/generators/rspec/templates/previous_failures.txt +0 -0
- data/generators/rspec/templates/rcov.opts +2 -0
- data/generators/rspec/templates/rspec.rake +132 -0
- data/generators/rspec/templates/script/autospec +3 -0
- data/generators/rspec/templates/script/spec +4 -0
- data/generators/rspec/templates/script/spec_server +116 -0
- data/generators/rspec/templates/spec.opts +4 -0
- data/generators/rspec/templates/spec_helper.rb +47 -0
- data/generators/rspec/templates/stories_helper.rb +3 -0
- data/generators/rspec_controller/USAGE +33 -0
- data/generators/rspec_controller/rspec_controller_generator.rb +49 -0
- data/generators/rspec_controller/templates/controller_spec.rb +25 -0
- data/generators/rspec_controller/templates/helper_spec.rb +11 -0
- data/generators/rspec_controller/templates/view_spec.rb +12 -0
- data/generators/rspec_default_values.rb +19 -0
- data/generators/rspec_model/USAGE +18 -0
- data/generators/rspec_model/rspec_model_generator.rb +35 -0
- data/generators/rspec_model/templates/model_spec.rb +15 -0
- data/generators/rspec_scaffold/rspec_scaffold_generator.rb +154 -0
- data/generators/rspec_scaffold/templates/controller_spec.rb +173 -0
- data/generators/rspec_scaffold/templates/edit_erb_spec.rb +26 -0
- data/generators/rspec_scaffold/templates/helper_spec.rb +11 -0
- data/generators/rspec_scaffold/templates/index_erb_spec.rb +27 -0
- data/generators/rspec_scaffold/templates/new_erb_spec.rb +26 -0
- data/generators/rspec_scaffold/templates/routing_spec.rb +59 -0
- data/generators/rspec_scaffold/templates/show_erb_spec.rb +23 -0
- data/init.rb +9 -0
- data/lib/autotest/discover.rb +1 -0
- data/lib/autotest/rails_rspec.rb +76 -0
- data/lib/spec/rails.rb +15 -0
- data/lib/spec/rails/example.rb +47 -0
- data/lib/spec/rails/example/assigns_hash_proxy.rb +43 -0
- data/lib/spec/rails/example/controller_example_group.rb +256 -0
- data/lib/spec/rails/example/cookies_proxy.rb +25 -0
- data/lib/spec/rails/example/functional_example_group.rb +87 -0
- data/lib/spec/rails/example/helper_example_group.rb +166 -0
- data/lib/spec/rails/example/model_example_group.rb +14 -0
- data/lib/spec/rails/example/rails_example_group.rb +33 -0
- data/lib/spec/rails/example/render_observer.rb +93 -0
- data/lib/spec/rails/example/view_example_group.rb +183 -0
- data/lib/spec/rails/extensions.rb +12 -0
- data/lib/spec/rails/extensions/action_controller/base.rb +14 -0
- data/lib/spec/rails/extensions/action_controller/rescue.rb +21 -0
- data/lib/spec/rails/extensions/action_controller/test_response.rb +11 -0
- data/lib/spec/rails/extensions/action_view/base.rb +31 -0
- data/lib/spec/rails/extensions/active_record/base.rb +30 -0
- data/lib/spec/rails/extensions/object.rb +5 -0
- data/lib/spec/rails/extensions/spec/example/configuration.rb +71 -0
- data/lib/spec/rails/extensions/spec/matchers/have.rb +21 -0
- data/lib/spec/rails/interop/testcase.rb +14 -0
- data/lib/spec/rails/matchers.rb +31 -0
- data/lib/spec/rails/matchers/assert_select.rb +131 -0
- data/lib/spec/rails/matchers/change.rb +11 -0
- data/lib/spec/rails/matchers/have_text.rb +57 -0
- data/lib/spec/rails/matchers/include_text.rb +54 -0
- data/lib/spec/rails/matchers/redirect_to.rb +113 -0
- data/lib/spec/rails/matchers/render_template.rb +90 -0
- data/lib/spec/rails/mocks.rb +132 -0
- data/lib/spec/rails/story_adapter.rb +79 -0
- data/lib/spec/rails/version.rb +15 -0
- data/spec/rails/autotest/mappings_spec.rb +36 -0
- data/spec/rails/example/assigns_hash_proxy_spec.rb +65 -0
- data/spec/rails/example/configuration_spec.rb +83 -0
- data/spec/rails/example/controller_isolation_spec.rb +62 -0
- data/spec/rails/example/controller_spec_spec.rb +272 -0
- data/spec/rails/example/cookies_proxy_spec.rb +74 -0
- data/spec/rails/example/example_group_factory_spec.rb +112 -0
- data/spec/rails/example/helper_spec_spec.rb +161 -0
- data/spec/rails/example/model_spec_spec.rb +18 -0
- data/spec/rails/example/shared_behaviour_spec.rb +16 -0
- data/spec/rails/example/test_unit_assertion_accessibility_spec.rb +33 -0
- data/spec/rails/example/view_spec_spec.rb +280 -0
- data/spec/rails/extensions/action_controller_rescue_action_spec.rb +54 -0
- data/spec/rails/extensions/action_view_base_spec.rb +48 -0
- data/spec/rails/extensions/active_record_spec.rb +14 -0
- data/spec/rails/interop/testcase_spec.rb +66 -0
- data/spec/rails/matchers/assert_select_spec.rb +814 -0
- data/spec/rails/matchers/description_generation_spec.rb +37 -0
- data/spec/rails/matchers/errors_on_spec.rb +13 -0
- data/spec/rails/matchers/have_text_spec.rb +62 -0
- data/spec/rails/matchers/include_text_spec.rb +64 -0
- data/spec/rails/matchers/redirect_to_spec.rb +209 -0
- data/spec/rails/matchers/render_template_spec.rb +176 -0
- data/spec/rails/matchers/should_change_spec.rb +15 -0
- data/spec/rails/mocks/ar_classes.rb +10 -0
- data/spec/rails/mocks/mock_model_spec.rb +106 -0
- data/spec/rails/mocks/stub_model_spec.rb +80 -0
- data/spec/rails/sample_modified_fixture.rb +8 -0
- data/spec/rails/sample_spec.rb +8 -0
- data/spec/rails/spec_server_spec.rb +96 -0
- data/spec/rails/spec_spec.rb +11 -0
- data/spec/rails_suite.rb +7 -0
- data/spec/spec_helper.rb +57 -0
- data/spec_resources/controllers/action_view_base_spec_controller.rb +2 -0
- data/spec_resources/controllers/controller_spec_controller.rb +94 -0
- data/spec_resources/controllers/redirect_spec_controller.rb +59 -0
- data/spec_resources/controllers/render_spec_controller.rb +30 -0
- data/spec_resources/controllers/rjs_spec_controller.rb +58 -0
- data/spec_resources/helpers/explicit_helper.rb +38 -0
- data/spec_resources/helpers/more_explicit_helper.rb +5 -0
- data/spec_resources/helpers/plugin_application_helper.rb +6 -0
- data/spec_resources/helpers/view_spec_helper.rb +13 -0
- data/spec_resources/views/controller_spec/_partial.rhtml +0 -0
- data/spec_resources/views/controller_spec/action_setting_flash_after_session_reset.rhtml +1 -0
- data/spec_resources/views/controller_spec/action_setting_flash_before_session_reset.rhtml +1 -0
- data/spec_resources/views/controller_spec/action_setting_the_assigns_hash.rhtml +0 -0
- data/spec_resources/views/controller_spec/action_with_errors_in_template.rhtml +1 -0
- data/spec_resources/views/controller_spec/action_with_template.rhtml +1 -0
- data/spec_resources/views/layouts/application.rhtml +0 -0
- data/spec_resources/views/layouts/simple.rhtml +0 -0
- data/spec_resources/views/objects/_object.html.erb +1 -0
- data/spec_resources/views/render_spec/_a_partial.rhtml +0 -0
- data/spec_resources/views/render_spec/action_with_alternate_layout.rhtml +0 -0
- data/spec_resources/views/render_spec/some_action.js.rjs +1 -0
- data/spec_resources/views/render_spec/some_action.rhtml +0 -0
- data/spec_resources/views/render_spec/some_action.rjs +1 -0
- data/spec_resources/views/rjs_spec/_replacement_partial.rhtml +1 -0
- data/spec_resources/views/rjs_spec/hide_div.rjs +1 -0
- data/spec_resources/views/rjs_spec/hide_page_element.rjs +1 -0
- data/spec_resources/views/rjs_spec/insert_html.rjs +1 -0
- data/spec_resources/views/rjs_spec/replace.rjs +1 -0
- data/spec_resources/views/rjs_spec/replace_html.rjs +1 -0
- data/spec_resources/views/rjs_spec/replace_html_with_partial.rjs +1 -0
- data/spec_resources/views/rjs_spec/visual_effect.rjs +1 -0
- data/spec_resources/views/rjs_spec/visual_toggle_effect.rjs +1 -0
- data/spec_resources/views/tag_spec/no_tags.rhtml +1 -0
- data/spec_resources/views/tag_spec/single_div_with_no_attributes.rhtml +1 -0
- data/spec_resources/views/tag_spec/single_div_with_one_attribute.rhtml +1 -0
- data/spec_resources/views/view_spec/_partial.rhtml +2 -0
- data/spec_resources/views/view_spec/_partial_used_twice.rhtml +0 -0
- data/spec_resources/views/view_spec/_partial_with_local_variable.rhtml +1 -0
- data/spec_resources/views/view_spec/_partial_with_sub_partial.rhtml +1 -0
- data/spec_resources/views/view_spec/_spacer.rhtml +1 -0
- data/spec_resources/views/view_spec/accessor.rhtml +5 -0
- data/spec_resources/views/view_spec/block_helper.rhtml +3 -0
- data/spec_resources/views/view_spec/entry_form.rhtml +2 -0
- data/spec_resources/views/view_spec/explicit_helper.rhtml +2 -0
- data/spec_resources/views/view_spec/foo/show.rhtml +1 -0
- data/spec_resources/views/view_spec/implicit_helper.rhtml +2 -0
- data/spec_resources/views/view_spec/multiple_helpers.rhtml +3 -0
- data/spec_resources/views/view_spec/should_not_receive.rhtml +3 -0
- data/spec_resources/views/view_spec/template_with_partial.rhtml +5 -0
- data/spec_resources/views/view_spec/template_with_partial_using_collection.rhtml +3 -0
- data/spec_resources/views/view_spec/template_with_partial_with_array.rhtml +1 -0
- data/stories/all.rb +10 -0
- data/stories/configuration/stories.rb +5 -0
- data/stories/helper.rb +6 -0
- data/stories/steps/people.rb +8 -0
- data/stories/transactions_should_rollback +15 -0
- data/stories/transactions_should_rollback.rb +25 -0
- metadata +234 -0
@@ -0,0 +1,173 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../spec_helper')
|
2
|
+
|
3
|
+
describe <%= controller_class_name %>Controller do
|
4
|
+
|
5
|
+
def mock_<%= file_name %>(stubs={})
|
6
|
+
@mock_<%= file_name %> ||= mock_model(<%= class_name %>, stubs)
|
7
|
+
end
|
8
|
+
|
9
|
+
describe "responding to GET index" do
|
10
|
+
|
11
|
+
it "should expose all <%= table_name.pluralize %> as @<%= table_name.pluralize %>" do
|
12
|
+
<%= class_name %>.should_receive(:find).with(:all).and_return([mock_<%= file_name %>])
|
13
|
+
get :index
|
14
|
+
assigns[:<%= table_name %>].should == [mock_<%= file_name %>]
|
15
|
+
end
|
16
|
+
|
17
|
+
describe "with mime type of xml" do
|
18
|
+
|
19
|
+
it "should render all <%= table_name.pluralize %> as xml" do
|
20
|
+
request.env["HTTP_ACCEPT"] = "application/xml"
|
21
|
+
<%= class_name %>.should_receive(:find).with(:all).and_return(<%= file_name.pluralize %> = mock("Array of <%= class_name.pluralize %>"))
|
22
|
+
<%= file_name.pluralize %>.should_receive(:to_xml).and_return("generated XML")
|
23
|
+
get :index
|
24
|
+
response.body.should == "generated XML"
|
25
|
+
end
|
26
|
+
|
27
|
+
end
|
28
|
+
|
29
|
+
end
|
30
|
+
|
31
|
+
describe "responding to GET show" do
|
32
|
+
|
33
|
+
it "should expose the requested <%= file_name %> as @<%= file_name %>" do
|
34
|
+
<%= class_name %>.should_receive(:find).with("37").and_return(mock_<%= file_name %>)
|
35
|
+
get :show, :id => "37"
|
36
|
+
assigns[:<%= file_name %>].should equal(mock_<%= file_name %>)
|
37
|
+
end
|
38
|
+
|
39
|
+
describe "with mime type of xml" do
|
40
|
+
|
41
|
+
it "should render the requested <%= file_name %> as xml" do
|
42
|
+
request.env["HTTP_ACCEPT"] = "application/xml"
|
43
|
+
<%= class_name %>.should_receive(:find).with("37").and_return(mock_<%= file_name %>)
|
44
|
+
mock_<%= file_name %>.should_receive(:to_xml).and_return("generated XML")
|
45
|
+
get :show, :id => "37"
|
46
|
+
response.body.should == "generated XML"
|
47
|
+
end
|
48
|
+
|
49
|
+
end
|
50
|
+
|
51
|
+
end
|
52
|
+
|
53
|
+
describe "responding to GET new" do
|
54
|
+
|
55
|
+
it "should expose a new <%= file_name %> as @<%= file_name %>" do
|
56
|
+
<%= class_name %>.should_receive(:new).and_return(mock_<%= file_name %>)
|
57
|
+
get :new
|
58
|
+
assigns[:<%= file_name %>].should equal(mock_<%= file_name %>)
|
59
|
+
end
|
60
|
+
|
61
|
+
end
|
62
|
+
|
63
|
+
describe "responding to GET edit" do
|
64
|
+
|
65
|
+
it "should expose the requested <%= file_name %> as @<%= file_name %>" do
|
66
|
+
<%= class_name %>.should_receive(:find).with("37").and_return(mock_<%= file_name %>)
|
67
|
+
get :edit, :id => "37"
|
68
|
+
assigns[:<%= file_name %>].should equal(mock_<%= file_name %>)
|
69
|
+
end
|
70
|
+
|
71
|
+
end
|
72
|
+
|
73
|
+
describe "responding to POST create" do
|
74
|
+
|
75
|
+
describe "with valid params" do
|
76
|
+
|
77
|
+
it "should expose a newly created <%= file_name %> as @<%= file_name %>" do
|
78
|
+
<%= class_name %>.should_receive(:new).with({'these' => 'params'}).and_return(mock_<%= file_name %>(:save => true))
|
79
|
+
post :create, :<%= file_name %> => {:these => 'params'}
|
80
|
+
assigns(:<%= file_name %>).should equal(mock_<%= file_name %>)
|
81
|
+
end
|
82
|
+
|
83
|
+
it "should redirect to the created <%= file_name %>" do
|
84
|
+
<%= class_name %>.stub!(:new).and_return(mock_<%= file_name %>(:save => true))
|
85
|
+
post :create, :<%= file_name %> => {}
|
86
|
+
response.should redirect_to(<%= table_name.singularize %>_url(mock_<%= file_name %>))
|
87
|
+
end
|
88
|
+
|
89
|
+
end
|
90
|
+
|
91
|
+
describe "with invalid params" do
|
92
|
+
|
93
|
+
it "should expose a newly created but unsaved <%= file_name %> as @<%= file_name %>" do
|
94
|
+
<%= class_name %>.stub!(:new).with({'these' => 'params'}).and_return(mock_<%= file_name %>(:save => false))
|
95
|
+
post :create, :<%= file_name %> => {:these => 'params'}
|
96
|
+
assigns(:<%= file_name %>).should equal(mock_<%= file_name %>)
|
97
|
+
end
|
98
|
+
|
99
|
+
it "should re-render the 'new' template" do
|
100
|
+
<%= class_name %>.stub!(:new).and_return(mock_<%= file_name %>(:save => false))
|
101
|
+
post :create, :<%= file_name %> => {}
|
102
|
+
response.should render_template('new')
|
103
|
+
end
|
104
|
+
|
105
|
+
end
|
106
|
+
|
107
|
+
end
|
108
|
+
|
109
|
+
describe "responding to PUT udpate" do
|
110
|
+
|
111
|
+
describe "with valid params" do
|
112
|
+
|
113
|
+
it "should update the requested <%= file_name %>" do
|
114
|
+
<%= class_name %>.should_receive(:find).with("37").and_return(mock_<%= file_name %>)
|
115
|
+
mock_<%= file_name %>.should_receive(:update_attributes).with({'these' => 'params'})
|
116
|
+
put :update, :id => "37", :<%= file_name %> => {:these => 'params'}
|
117
|
+
end
|
118
|
+
|
119
|
+
it "should expose the requested <%= file_name %> as @<%= file_name %>" do
|
120
|
+
<%= class_name %>.stub!(:find).and_return(mock_<%= file_name %>(:update_attributes => true))
|
121
|
+
put :update, :id => "1"
|
122
|
+
assigns(:<%= file_name %>).should equal(mock_<%= file_name %>)
|
123
|
+
end
|
124
|
+
|
125
|
+
it "should redirect to the <%= file_name %>" do
|
126
|
+
<%= class_name %>.stub!(:find).and_return(mock_<%= file_name %>(:update_attributes => true))
|
127
|
+
put :update, :id => "1"
|
128
|
+
response.should redirect_to(<%= table_name.singularize %>_url(mock_<%= file_name %>))
|
129
|
+
end
|
130
|
+
|
131
|
+
end
|
132
|
+
|
133
|
+
describe "with invalid params" do
|
134
|
+
|
135
|
+
it "should update the requested <%= file_name %>" do
|
136
|
+
<%= class_name %>.should_receive(:find).with("37").and_return(mock_<%= file_name %>)
|
137
|
+
mock_<%= file_name %>.should_receive(:update_attributes).with({'these' => 'params'})
|
138
|
+
put :update, :id => "37", :<%= file_name %> => {:these => 'params'}
|
139
|
+
end
|
140
|
+
|
141
|
+
it "should expose the <%= file_name %> as @<%= file_name %>" do
|
142
|
+
<%= class_name %>.stub!(:find).and_return(mock_<%= file_name %>(:update_attributes => false))
|
143
|
+
put :update, :id => "1"
|
144
|
+
assigns(:<%= file_name %>).should equal(mock_<%= file_name %>)
|
145
|
+
end
|
146
|
+
|
147
|
+
it "should re-render the 'edit' template" do
|
148
|
+
<%= class_name %>.stub!(:find).and_return(mock_<%= file_name %>(:update_attributes => false))
|
149
|
+
put :update, :id => "1"
|
150
|
+
response.should render_template('edit')
|
151
|
+
end
|
152
|
+
|
153
|
+
end
|
154
|
+
|
155
|
+
end
|
156
|
+
|
157
|
+
describe "responding to DELETE destroy" do
|
158
|
+
|
159
|
+
it "should destroy the requested <%= file_name %>" do
|
160
|
+
<%= class_name %>.should_receive(:find).with("37").and_return(mock_<%= file_name %>)
|
161
|
+
mock_<%= file_name %>.should_receive(:destroy)
|
162
|
+
delete :destroy, :id => "37"
|
163
|
+
end
|
164
|
+
|
165
|
+
it "should redirect to the <%= table_name %> list" do
|
166
|
+
<%= class_name %>.stub!(:find).and_return(mock_<%= file_name %>(:destroy => true))
|
167
|
+
delete :destroy, :id => "1"
|
168
|
+
response.should redirect_to(<%= table_name %>_url)
|
169
|
+
end
|
170
|
+
|
171
|
+
end
|
172
|
+
|
173
|
+
end
|
@@ -0,0 +1,26 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../../spec_helper')
|
2
|
+
|
3
|
+
describe "/<%= table_name %>/edit.<%= default_file_extension %>" do
|
4
|
+
include <%= controller_class_name %>Helper
|
5
|
+
|
6
|
+
before(:each) do
|
7
|
+
assigns[:<%= file_name %>] = @<%= file_name %> = stub_model(<%= class_name %>,
|
8
|
+
:new_record? => false<%= attributes.empty? ? '' : ',' %>
|
9
|
+
<% attributes.each_with_index do |attribute, attribute_index| -%><% unless attribute.name =~ /_id/ || [:datetime, :timestamp, :time, :date].index(attribute.type) -%>
|
10
|
+
:<%= attribute.name %> => <%= attribute.default_value %><%= attribute_index == attributes.length - 1 ? '' : ','%>
|
11
|
+
<% end -%><% end -%>
|
12
|
+
)
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should render edit form" do
|
16
|
+
render "/<%= table_name %>/edit.<%= default_file_extension %>"
|
17
|
+
|
18
|
+
response.should have_tag("form[action=#{<%= file_name %>_path(@<%= file_name %>)}][method=post]") do
|
19
|
+
<% for attribute in attributes -%><% unless attribute.name =~ /_id/ || [:datetime, :timestamp, :time, :date].index(attribute.type) -%>
|
20
|
+
with_tag('<%= attribute.input_type -%>#<%= file_name %>_<%= attribute.name %>[name=?]', "<%= file_name %>[<%= attribute.name %>]")
|
21
|
+
<% end -%><% end -%>
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
|
@@ -0,0 +1,11 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../spec_helper')
|
2
|
+
|
3
|
+
describe <%= controller_class_name %>Helper do
|
4
|
+
|
5
|
+
#Delete this example and add some real ones or delete this file
|
6
|
+
it "should be included in the object returned by #helper" do
|
7
|
+
included_modules = (class << helper; self; end).send :included_modules
|
8
|
+
included_modules.should include(<%= controller_class_name %>Helper)
|
9
|
+
end
|
10
|
+
|
11
|
+
end
|
@@ -0,0 +1,27 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../../spec_helper')
|
2
|
+
|
3
|
+
describe "/<%= table_name %>/index.<%= default_file_extension %>" do
|
4
|
+
include <%= controller_class_name %>Helper
|
5
|
+
|
6
|
+
before(:each) do
|
7
|
+
assigns[:<%= table_name %>] = [
|
8
|
+
<% [1,2].each_with_index do |id, model_index| -%>
|
9
|
+
stub_model(<%= class_name %><%= attributes.empty? ? (model_index == 1 ? ')' : '),') : ',' %>
|
10
|
+
<% attributes.each_with_index do |attribute, attribute_index| -%><% unless attribute.name =~ /_id/ || [:datetime, :timestamp, :time, :date].index(attribute.type) -%>
|
11
|
+
:<%= attribute.name %> => <%= attribute.default_value %><%= attribute_index == attributes.length - 1 ? '' : ','%>
|
12
|
+
<% end -%><% end -%>
|
13
|
+
<% if !attributes.empty? -%>
|
14
|
+
<%= model_index == 1 ? ')' : '),' %>
|
15
|
+
<% end -%>
|
16
|
+
<% end -%>
|
17
|
+
]
|
18
|
+
end
|
19
|
+
|
20
|
+
it "should render list of <%= table_name %>" do
|
21
|
+
render "/<%= table_name %>/index.<%= default_file_extension %>"
|
22
|
+
<% for attribute in attributes -%><% unless attribute.name =~ /_id/ || [:datetime, :timestamp, :time, :date].index(attribute.type) -%>
|
23
|
+
response.should have_tag("tr>td", <%= attribute.default_value %>, 2)
|
24
|
+
<% end -%><% end -%>
|
25
|
+
end
|
26
|
+
end
|
27
|
+
|
@@ -0,0 +1,26 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../../spec_helper')
|
2
|
+
|
3
|
+
describe "/<%= table_name %>/new.<%= default_file_extension %>" do
|
4
|
+
include <%= controller_class_name %>Helper
|
5
|
+
|
6
|
+
before(:each) do
|
7
|
+
assigns[:<%= file_name %>] = stub_model(<%= class_name %>,
|
8
|
+
:new_record? => true<%= attributes.empty? ? '' : ',' %>
|
9
|
+
<% attributes.each_with_index do |attribute, attribute_index| -%><% unless attribute.name =~ /_id/ || [:datetime, :timestamp, :time, :date].index(attribute.type) -%>
|
10
|
+
:<%= attribute.name %> => <%= attribute.default_value %><%= attribute_index == attributes.length - 1 ? '' : ','%>
|
11
|
+
<% end -%><% end -%>
|
12
|
+
)
|
13
|
+
end
|
14
|
+
|
15
|
+
it "should render new form" do
|
16
|
+
render "/<%= table_name %>/new.<%= default_file_extension %>"
|
17
|
+
|
18
|
+
response.should have_tag("form[action=?][method=post]", <%= table_name %>_path) do
|
19
|
+
<% for attribute in attributes -%><% unless attribute.name =~ /_id/ || [:datetime, :timestamp, :time, :date].index(attribute.type) -%>
|
20
|
+
with_tag("<%= attribute.input_type -%>#<%= file_name %>_<%= attribute.name %>[name=?]", "<%= file_name %>[<%= attribute.name %>]")
|
21
|
+
<% end -%><% end -%>
|
22
|
+
end
|
23
|
+
end
|
24
|
+
end
|
25
|
+
|
26
|
+
|
@@ -0,0 +1,59 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../spec_helper')
|
2
|
+
|
3
|
+
describe <%= controller_class_name %>Controller do
|
4
|
+
describe "route generation" do
|
5
|
+
it "should map #index" do
|
6
|
+
route_for(:controller => "<%= table_name %>", :action => "index").should == "/<%= table_name %>"
|
7
|
+
end
|
8
|
+
|
9
|
+
it "should map #new" do
|
10
|
+
route_for(:controller => "<%= table_name %>", :action => "new").should == "/<%= table_name %>/new"
|
11
|
+
end
|
12
|
+
|
13
|
+
it "should map #show" do
|
14
|
+
route_for(:controller => "<%= table_name %>", :action => "show", :id => 1).should == "/<%= table_name %>/1"
|
15
|
+
end
|
16
|
+
|
17
|
+
it "should map #edit" do
|
18
|
+
route_for(:controller => "<%= table_name %>", :action => "edit", :id => 1).should == "/<%= table_name %>/1<%= resource_edit_path %>"
|
19
|
+
end
|
20
|
+
|
21
|
+
it "should map #update" do
|
22
|
+
route_for(:controller => "<%= table_name %>", :action => "update", :id => 1).should == "/<%= table_name %>/1"
|
23
|
+
end
|
24
|
+
|
25
|
+
it "should map #destroy" do
|
26
|
+
route_for(:controller => "<%= table_name %>", :action => "destroy", :id => 1).should == "/<%= table_name %>/1"
|
27
|
+
end
|
28
|
+
end
|
29
|
+
|
30
|
+
describe "route recognition" do
|
31
|
+
it "should generate params for #index" do
|
32
|
+
params_from(:get, "/<%= table_name %>").should == {:controller => "<%= table_name %>", :action => "index"}
|
33
|
+
end
|
34
|
+
|
35
|
+
it "should generate params for #new" do
|
36
|
+
params_from(:get, "/<%= table_name %>/new").should == {:controller => "<%= table_name %>", :action => "new"}
|
37
|
+
end
|
38
|
+
|
39
|
+
it "should generate params for #create" do
|
40
|
+
params_from(:post, "/<%= table_name %>").should == {:controller => "<%= table_name %>", :action => "create"}
|
41
|
+
end
|
42
|
+
|
43
|
+
it "should generate params for #show" do
|
44
|
+
params_from(:get, "/<%= table_name %>/1").should == {:controller => "<%= table_name %>", :action => "show", :id => "1"}
|
45
|
+
end
|
46
|
+
|
47
|
+
it "should generate params for #edit" do
|
48
|
+
params_from(:get, "/<%= table_name %>/1<%= resource_edit_path %>").should == {:controller => "<%= table_name %>", :action => "edit", :id => "1"}
|
49
|
+
end
|
50
|
+
|
51
|
+
it "should generate params for #update" do
|
52
|
+
params_from(:put, "/<%= table_name %>/1").should == {:controller => "<%= table_name %>", :action => "update", :id => "1"}
|
53
|
+
end
|
54
|
+
|
55
|
+
it "should generate params for #destroy" do
|
56
|
+
params_from(:delete, "/<%= table_name %>/1").should == {:controller => "<%= table_name %>", :action => "destroy", :id => "1"}
|
57
|
+
end
|
58
|
+
end
|
59
|
+
end
|
@@ -0,0 +1,23 @@
|
|
1
|
+
require File.expand_path(File.dirname(__FILE__) + '<%= '/..' * class_nesting_depth %>/../../spec_helper')
|
2
|
+
|
3
|
+
describe "/<%= table_name %>/show.<%= default_file_extension %>" do
|
4
|
+
include <%= controller_class_name %>Helper
|
5
|
+
|
6
|
+
before(:each) do
|
7
|
+
assigns[:<%= file_name %>] = @<%= file_name %> = stub_model(<%= class_name %><%= attributes.empty? ? ')' : ',' %>
|
8
|
+
<% attributes.each_with_index do |attribute, attribute_index| -%><% unless attribute.name =~ /_id/ || [:datetime, :timestamp, :time, :date].index(attribute.type) -%>
|
9
|
+
:<%= attribute.name %> => <%= attribute.default_value %><%= attribute_index == attributes.length - 1 ? '' : ','%>
|
10
|
+
<% end -%><% end -%>
|
11
|
+
<% if !attributes.empty? -%>
|
12
|
+
)
|
13
|
+
<% end -%>
|
14
|
+
end
|
15
|
+
|
16
|
+
it "should render attributes in <p>" do
|
17
|
+
render "/<%= table_name %>/show.<%= default_file_extension %>"
|
18
|
+
<% for attribute in attributes -%><% unless attribute.name =~ /_id/ || [:datetime, :timestamp, :time, :date].index(attribute.type) -%>
|
19
|
+
response.should have_text(/<%= Regexp.escape(attribute.default_value)[1..-2]%>/)
|
20
|
+
<% end -%><% end -%>
|
21
|
+
end
|
22
|
+
end
|
23
|
+
|
data/init.rb
ADDED
@@ -0,0 +1,9 @@
|
|
1
|
+
# Placeholder to satisfy Rails.
|
2
|
+
#
|
3
|
+
# Do NOT add any require statements to this file. Doing
|
4
|
+
# so will cause Rails to load this plugin all of the time.
|
5
|
+
#
|
6
|
+
# Running 'ruby script/generate rspec' will
|
7
|
+
# generate spec/spec_helper.rb, which includes the necessary
|
8
|
+
# require statements and configuration. This file should
|
9
|
+
# be required by all of your spec files.
|
@@ -0,0 +1 @@
|
|
1
|
+
# This needs to be here for >= ZenTest-3.9.0 to add this directory to the load path.
|
@@ -0,0 +1,76 @@
|
|
1
|
+
# (c) Copyright 2006 Nick Sieger <nicksieger@gmail.com>
|
2
|
+
#
|
3
|
+
# Permission is hereby granted, free of charge, to any person
|
4
|
+
# obtaining a copy of this software and associated documentation files
|
5
|
+
# (the "Software"), to deal in the Software without restriction,
|
6
|
+
# including without limitation the rights to use, copy, modify, merge,
|
7
|
+
# publish, distribute, sublicense, and/or sell copies of the Software,
|
8
|
+
# and to permit persons to whom the Software is furnished to do so,
|
9
|
+
# subject to the following conditions:
|
10
|
+
#
|
11
|
+
# The above copyright notice and this permission notice shall be
|
12
|
+
# included in all copies or substantial portions of the Software.
|
13
|
+
#
|
14
|
+
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
15
|
+
# EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
16
|
+
# MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
17
|
+
# NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
18
|
+
# BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
|
19
|
+
# ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
|
20
|
+
# CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
21
|
+
# SOFTWARE.
|
22
|
+
|
23
|
+
$:.push(*Dir["vendor/rails/*/lib"])
|
24
|
+
|
25
|
+
require 'active_support'
|
26
|
+
require 'autotest/rspec'
|
27
|
+
|
28
|
+
Autotest.add_hook :initialize do |at|
|
29
|
+
%w{config/ coverage/ db/ doc/ log/ public/ script/ tmp/ vendor/rails vendor/plugins previous_failures.txt}.each do |exception|
|
30
|
+
at.add_exception(exception)
|
31
|
+
end
|
32
|
+
|
33
|
+
at.clear_mappings
|
34
|
+
|
35
|
+
at.add_mapping(%r%^(test|spec)/fixtures/(.*).yml$%) { |_, m|
|
36
|
+
["spec/models/#{m[2].singularize}_spec.rb"] + at.files_matching(%r%^spec\/views\/#{m[2]}/.*_spec\.rb$%)
|
37
|
+
}
|
38
|
+
at.add_mapping(%r%^spec/(models|controllers|views|helpers|lib)/.*rb$%) { |filename, _|
|
39
|
+
filename
|
40
|
+
}
|
41
|
+
at.add_mapping(%r%^app/models/(.*)\.rb$%) { |_, m|
|
42
|
+
["spec/models/#{m[1]}_spec.rb"]
|
43
|
+
}
|
44
|
+
at.add_mapping(%r%^app/views/(.*)$%) { |_, m|
|
45
|
+
at.files_matching %r%^spec/views/#{m[1]}_spec.rb$%
|
46
|
+
}
|
47
|
+
at.add_mapping(%r%^app/controllers/(.*)\.rb$%) { |_, m|
|
48
|
+
if m[1] == "application"
|
49
|
+
at.files_matching %r%^spec/controllers/.*_spec\.rb$%
|
50
|
+
else
|
51
|
+
["spec/controllers/#{m[1]}_spec.rb"]
|
52
|
+
end
|
53
|
+
}
|
54
|
+
at.add_mapping(%r%^app/helpers/(.*)_helper\.rb$%) { |_, m|
|
55
|
+
if m[1] == "application" then
|
56
|
+
at.files_matching(%r%^spec/(views|helpers)/.*_spec\.rb$%)
|
57
|
+
else
|
58
|
+
["spec/helpers/#{m[1]}_helper_spec.rb"] + at.files_matching(%r%^spec\/views\/#{m[1]}/.*_spec\.rb$%)
|
59
|
+
end
|
60
|
+
}
|
61
|
+
at.add_mapping(%r%^config/routes\.rb$%) {
|
62
|
+
at.files_matching %r%^spec/(controllers|views|helpers)/.*_spec\.rb$%
|
63
|
+
}
|
64
|
+
at.add_mapping(%r%^config/database\.yml$%) { |_, m|
|
65
|
+
at.files_matching %r%^spec/models/.*_spec\.rb$%
|
66
|
+
}
|
67
|
+
at.add_mapping(%r%^(spec/(spec_helper|shared/.*)|config/(boot|environment(s/test)?))\.rb$%) {
|
68
|
+
at.files_matching %r%^spec/(models|controllers|views|helpers)/.*_spec\.rb$%
|
69
|
+
}
|
70
|
+
at.add_mapping(%r%^lib/(.*)\.rb$%) { |_, m|
|
71
|
+
["spec/lib/#{m[1]}_spec.rb"]
|
72
|
+
}
|
73
|
+
end
|
74
|
+
|
75
|
+
class Autotest::RailsRspec < Autotest::Rspec
|
76
|
+
end
|
data/lib/spec/rails.rb
ADDED
@@ -0,0 +1,15 @@
|
|
1
|
+
silence_warnings { RAILS_ENV = "test" }
|
2
|
+
|
3
|
+
require_dependency 'application'
|
4
|
+
require 'action_controller/test_process'
|
5
|
+
require 'action_controller/integration'
|
6
|
+
require 'active_record/fixtures' if defined?(ActiveRecord::Base)
|
7
|
+
require 'test/unit'
|
8
|
+
|
9
|
+
require 'spec'
|
10
|
+
|
11
|
+
require 'spec/rails/matchers'
|
12
|
+
require 'spec/rails/mocks'
|
13
|
+
require 'spec/rails/example'
|
14
|
+
require 'spec/rails/extensions'
|
15
|
+
require 'spec/rails/interop/testcase'
|