mini-quick-sys 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/mini-quick-sys.gemspec +12 -0
- data/rspec-rails-8.0.4/Capybara.md +28 -0
- data/rspec-rails-8.0.4/Changelog.md +1408 -0
- data/rspec-rails-8.0.4/LICENSE.md +25 -0
- data/rspec-rails-8.0.4/README.md +386 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/authentication/authentication_generator.rb +25 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/authentication/templates/user_spec.rb +5 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/authentication/templates/users.yml +11 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/channel/channel_generator.rb +12 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/channel/templates/channel_spec.rb.erb +7 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/controller/controller_generator.rb +51 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/controller/templates/controller_spec.rb +16 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/controller/templates/request_spec.rb +19 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/controller/templates/routing_spec.rb +13 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/controller/templates/view_spec.rb +5 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/feature/feature_generator.rb +29 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/feature/templates/feature_singular_spec.rb +5 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/feature/templates/feature_spec.rb +5 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/generator/generator_generator.rb +24 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/generator/templates/generator_spec.rb +5 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/helper/helper_generator.rb +16 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/helper/templates/helper_spec.rb +17 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/install/install_generator.rb +80 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/install/templates/spec/rails_helper.rb +91 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/job/job_generator.rb +13 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/job/templates/job_spec.rb.erb +7 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/mailbox/mailbox_generator.rb +14 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/mailbox/templates/mailbox_spec.rb.erb +7 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/mailer/mailer_generator.rb +30 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/mailer/templates/fixture +3 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/mailer/templates/mailer_spec.rb +25 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/mailer/templates/preview.rb +13 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/model/model_generator.rb +37 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/model/templates/fixtures.yml +19 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/model/templates/model_spec.rb +7 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/request/request_generator.rb +17 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/request/templates/request_spec.rb +10 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/scaffold_generator.rb +136 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/api_controller_spec.rb +129 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/api_request_spec.rb +131 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/controller_spec.rb +145 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/edit_spec.rb +27 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/index_spec.rb +26 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/new_spec.rb +22 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/request_spec.rb +138 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/routing_spec.rb +46 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/scaffold/templates/show_spec.rb +21 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/system/system_generator.rb +24 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/system/templates/system_spec.rb +9 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/view/templates/view_spec.rb +5 -0
- data/rspec-rails-8.0.4/lib/generators/rspec/view/view_generator.rb +22 -0
- data/rspec-rails-8.0.4/lib/generators/rspec.rb +56 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/active_record.rb +25 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/adapters.rb +196 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/configuration.rb +158 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/channel_example_group.rb +93 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/controller_example_group.rb +217 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/feature_example_group.rb +53 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/helper_example_group.rb +42 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/job_example_group.rb +23 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/mailbox_example_group.rb +80 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/mailer_example_group.rb +38 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/model_example_group.rb +11 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/rails_example_group.rb +23 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/request_example_group.rb +27 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/routing_example_group.rb +61 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/system_example_group.rb +177 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example/view_example_group.rb +214 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/example.rb +13 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/extensions/active_record/proxy.rb +11 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/extensions.rb +1 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/feature_check.rb +51 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/file_fixture_support.rb +18 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/fixture_file_upload_support.rb +39 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/fixture_support.rb +58 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/action_cable/have_broadcasted_to.rb +180 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/action_cable/have_streams.rb +58 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/action_cable.rb +70 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/action_mailbox.rb +73 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/active_job.rb +534 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/base_matcher.rb +179 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/be_a_new.rb +83 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/be_new_record.rb +30 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/be_valid.rb +49 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/have_enqueued_mail.rb +259 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/have_http_status.rb +381 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/have_rendered.rb +64 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/redirect_to.rb +38 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/relation_match_array.rb +3 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/routing_matchers.rb +125 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers/send_email.rb +122 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/matchers.rb +36 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/tasks/rspec.rake +49 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/vendor/capybara.rb +32 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/version.rb +9 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/view_assigns.rb +27 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/view_path_builder.rb +29 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/view_rendering.rb +166 -0
- data/rspec-rails-8.0.4/lib/rspec/rails/view_spec_methods.rb +56 -0
- data/rspec-rails-8.0.4/lib/rspec/rails.rb +18 -0
- data/rspec-rails-8.0.4/lib/rspec-rails.rb +91 -0
- metadata +142 -0
|
@@ -0,0 +1,129 @@
|
|
|
1
|
+
require 'rails_helper'
|
|
2
|
+
|
|
3
|
+
# This spec was generated by rspec-rails when you ran the scaffold generator.
|
|
4
|
+
# It demonstrates how one might use RSpec to specify the controller code that
|
|
5
|
+
# was generated by Rails when you ran the scaffold generator.
|
|
6
|
+
#
|
|
7
|
+
# It assumes that the implementation code is generated by the rails scaffold
|
|
8
|
+
# generator. If you are using any extension libraries to generate different
|
|
9
|
+
# controller code, this generated spec may or may not pass.
|
|
10
|
+
#
|
|
11
|
+
# It only uses APIs available in rails and/or rspec-rails. There are a number
|
|
12
|
+
# of tools you can use to make these specs even more expressive, but we're
|
|
13
|
+
# sticking to rails and rspec-rails APIs to keep things simple and stable.
|
|
14
|
+
#
|
|
15
|
+
# Compared to earlier versions of this generator, there is very limited use of
|
|
16
|
+
# stubs and message expectations in this spec. Stubs are only used when there
|
|
17
|
+
# is no simpler way to get a handle on the object needed for the example.
|
|
18
|
+
# Message expectations are only used when there is no simpler way to specify
|
|
19
|
+
# that an instance is receiving a specific message.
|
|
20
|
+
#
|
|
21
|
+
# Also compared to earlier versions of this generator, there are no longer any
|
|
22
|
+
# expectations of assigns and templates rendered. These features have been
|
|
23
|
+
# removed from Rails core in Rails 5, but can be added back in via the
|
|
24
|
+
# `rails-controller-testing` gem.
|
|
25
|
+
|
|
26
|
+
<% module_namespacing do -%>
|
|
27
|
+
RSpec.describe <%= controller_class_name %>Controller, <%= type_metatag(:controller) %> do
|
|
28
|
+
|
|
29
|
+
# This should return the minimal set of attributes required to create a valid
|
|
30
|
+
# <%= class_name %>. As you add validations to <%= class_name %>, be sure to
|
|
31
|
+
# adjust the attributes here as well.
|
|
32
|
+
let(:valid_attributes) {
|
|
33
|
+
skip("Add a hash of attributes valid for your model")
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
let(:invalid_attributes) {
|
|
37
|
+
skip("Add a hash of attributes invalid for your model")
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
# This should return the minimal set of values that should be in the session
|
|
41
|
+
# in order to pass any filters (e.g. authentication) defined in
|
|
42
|
+
# <%= controller_class_name %>Controller. Be sure to keep this updated too.
|
|
43
|
+
let(:valid_session) { {} }
|
|
44
|
+
|
|
45
|
+
<% unless options[:singleton] -%>
|
|
46
|
+
describe "GET #index" do
|
|
47
|
+
it "returns a success response" do
|
|
48
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
49
|
+
get :index, params: {}, session: valid_session
|
|
50
|
+
expect(response).to be_successful
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
<% end -%>
|
|
55
|
+
describe "GET #show" do
|
|
56
|
+
it "returns a success response" do
|
|
57
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
58
|
+
get :show, params: {id: <%= file_name %>.to_param}, session: valid_session
|
|
59
|
+
expect(response).to be_successful
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
describe "POST #create" do
|
|
64
|
+
context "with valid params" do
|
|
65
|
+
it "creates a new <%= class_name %>" do
|
|
66
|
+
expect {
|
|
67
|
+
post :create, params: {<%= singular_table_name %>: valid_attributes}, session: valid_session
|
|
68
|
+
}.to change(<%= class_name %>, :count).by(1)
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
it "renders a JSON response with the new <%= singular_table_name %>" do
|
|
72
|
+
post :create, params: {<%= singular_table_name %>: valid_attributes}, session: valid_session
|
|
73
|
+
expect(response).to have_http_status(:created)
|
|
74
|
+
expect(response.content_type).to eq('application/json')
|
|
75
|
+
expect(response.location).to eq(<%= singular_table_name %>_url(<%= class_name %>.last))
|
|
76
|
+
end
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
context "with invalid params" do
|
|
80
|
+
it "renders a JSON response with errors for the new <%= singular_table_name %>" do
|
|
81
|
+
post :create, params: {<%= singular_table_name %>: invalid_attributes}, session: valid_session
|
|
82
|
+
expect(response).to have_http_status(<%= Rack::Utils::SYMBOL_TO_STATUS_CODE.key(422).inspect %>)
|
|
83
|
+
expect(response.content_type).to eq('application/json')
|
|
84
|
+
end
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
describe "PUT #update" do
|
|
89
|
+
context "with valid params" do
|
|
90
|
+
let(:new_attributes) {
|
|
91
|
+
skip("Add a hash of attributes valid for your model")
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
it "updates the requested <%= singular_table_name %>" do
|
|
95
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
96
|
+
put :update, params: {id: <%= file_name %>.to_param, <%= singular_table_name %>: new_attributes}, session: valid_session
|
|
97
|
+
<%= file_name %>.reload
|
|
98
|
+
skip("Add assertions for updated state")
|
|
99
|
+
end
|
|
100
|
+
|
|
101
|
+
it "renders a JSON response with the <%= singular_table_name %>" do
|
|
102
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
103
|
+
put :update, params: {id: <%= file_name %>.to_param, <%= singular_table_name %>: new_attributes}, session: valid_session
|
|
104
|
+
expect(response).to have_http_status(:ok)
|
|
105
|
+
expect(response.content_type).to eq('application/json')
|
|
106
|
+
end
|
|
107
|
+
end
|
|
108
|
+
|
|
109
|
+
context "with invalid params" do
|
|
110
|
+
it "renders a JSON response with errors for the <%= singular_table_name %>" do
|
|
111
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
112
|
+
put :update, params: {id: <%= file_name %>.to_param, <%= singular_table_name %>: invalid_attributes}, session: valid_session
|
|
113
|
+
expect(response).to have_http_status(<%= Rack::Utils::SYMBOL_TO_STATUS_CODE.key(422).inspect %>)
|
|
114
|
+
expect(response.content_type).to eq('application/json')
|
|
115
|
+
end
|
|
116
|
+
end
|
|
117
|
+
end
|
|
118
|
+
|
|
119
|
+
describe "DELETE #destroy" do
|
|
120
|
+
it "destroys the requested <%= singular_table_name %>" do
|
|
121
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
122
|
+
expect {
|
|
123
|
+
delete :destroy, params: {id: <%= file_name %>.to_param}, session: valid_session
|
|
124
|
+
}.to change(<%= class_name %>, :count).by(-1)
|
|
125
|
+
end
|
|
126
|
+
end
|
|
127
|
+
|
|
128
|
+
end
|
|
129
|
+
<% end -%>
|
|
@@ -0,0 +1,131 @@
|
|
|
1
|
+
require 'rails_helper'
|
|
2
|
+
|
|
3
|
+
# This spec was generated by rspec-rails when you ran the scaffold generator.
|
|
4
|
+
# It demonstrates how one might use RSpec to test the controller code that
|
|
5
|
+
# was generated by Rails when you ran the scaffold generator.
|
|
6
|
+
#
|
|
7
|
+
# It assumes that the implementation code is generated by the rails scaffold
|
|
8
|
+
# generator. If you are using any extension libraries to generate different
|
|
9
|
+
# controller code, this generated spec may or may not pass.
|
|
10
|
+
#
|
|
11
|
+
# It only uses APIs available in rails and/or rspec-rails. There are a number
|
|
12
|
+
# of tools you can use to make these specs even more expressive, but we're
|
|
13
|
+
# sticking to rails and rspec-rails APIs to keep things simple and stable.
|
|
14
|
+
|
|
15
|
+
<% module_namespacing do -%>
|
|
16
|
+
RSpec.describe "/<%= name.underscore.pluralize %>", <%= type_metatag(:request) %> do
|
|
17
|
+
# This should return the minimal set of attributes required to create a valid
|
|
18
|
+
# <%= class_name %>. As you add validations to <%= class_name %>, be sure to
|
|
19
|
+
# adjust the attributes here as well.
|
|
20
|
+
let(:valid_attributes) {
|
|
21
|
+
skip("Add a hash of attributes valid for your model")
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
let(:invalid_attributes) {
|
|
25
|
+
skip("Add a hash of attributes invalid for your model")
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
# This should return the minimal set of values that should be in the headers
|
|
29
|
+
# in order to pass any filters (e.g. authentication) defined in
|
|
30
|
+
# <%= controller_class_name %>Controller, or in your router and rack
|
|
31
|
+
# middleware. Be sure to keep this updated too.
|
|
32
|
+
let(:valid_headers) {
|
|
33
|
+
{}
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
<% unless options[:singleton] -%>
|
|
37
|
+
describe "GET /index" do
|
|
38
|
+
it "renders a successful response" do
|
|
39
|
+
<%= class_name %>.create! valid_attributes
|
|
40
|
+
get <%= index_helper %>_url, headers: valid_headers, as: :json
|
|
41
|
+
expect(response).to be_successful
|
|
42
|
+
end
|
|
43
|
+
end
|
|
44
|
+
<% end -%>
|
|
45
|
+
|
|
46
|
+
describe "GET /show" do
|
|
47
|
+
it "renders a successful response" do
|
|
48
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
49
|
+
get <%= show_helper %>, as: :json
|
|
50
|
+
expect(response).to be_successful
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
describe "POST /create" do
|
|
55
|
+
context "with valid parameters" do
|
|
56
|
+
it "creates a new <%= class_name %>" do
|
|
57
|
+
expect {
|
|
58
|
+
post <%= index_helper %>_url,
|
|
59
|
+
params: { <%= singular_table_name %>: valid_attributes }, headers: valid_headers, as: :json
|
|
60
|
+
}.to change(<%= class_name %>, :count).by(1)
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
it "renders a JSON response with the new <%= singular_table_name %>" do
|
|
64
|
+
post <%= index_helper %>_url,
|
|
65
|
+
params: { <%= singular_table_name %>: valid_attributes }, headers: valid_headers, as: :json
|
|
66
|
+
expect(response).to have_http_status(:created)
|
|
67
|
+
expect(response.content_type).to match(a_string_including("application/json"))
|
|
68
|
+
end
|
|
69
|
+
end
|
|
70
|
+
|
|
71
|
+
context "with invalid parameters" do
|
|
72
|
+
it "does not create a new <%= class_name %>" do
|
|
73
|
+
expect {
|
|
74
|
+
post <%= index_helper %>_url,
|
|
75
|
+
params: { <%= singular_table_name %>: invalid_attributes }, as: :json
|
|
76
|
+
}.to change(<%= class_name %>, :count).by(0)
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
it "renders a JSON response with errors for the new <%= singular_table_name %>" do
|
|
80
|
+
post <%= index_helper %>_url,
|
|
81
|
+
params: { <%= singular_table_name %>: invalid_attributes }, headers: valid_headers, as: :json
|
|
82
|
+
expect(response).to have_http_status(<%= Rack::Utils::SYMBOL_TO_STATUS_CODE.key(422).inspect %>)
|
|
83
|
+
expect(response.content_type).to match(a_string_including("application/json"))
|
|
84
|
+
end
|
|
85
|
+
end
|
|
86
|
+
end
|
|
87
|
+
|
|
88
|
+
describe "PATCH /update" do
|
|
89
|
+
context "with valid parameters" do
|
|
90
|
+
let(:new_attributes) {
|
|
91
|
+
skip("Add a hash of attributes valid for your model")
|
|
92
|
+
}
|
|
93
|
+
|
|
94
|
+
it "updates the requested <%= singular_table_name %>" do
|
|
95
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
96
|
+
patch <%= show_helper %>,
|
|
97
|
+
params: { <%= singular_table_name %>: new_attributes }, headers: valid_headers, as: :json
|
|
98
|
+
<%= file_name %>.reload
|
|
99
|
+
skip("Add assertions for updated state")
|
|
100
|
+
end
|
|
101
|
+
|
|
102
|
+
it "renders a JSON response with the <%= singular_table_name %>" do
|
|
103
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
104
|
+
patch <%= show_helper %>,
|
|
105
|
+
params: { <%= singular_table_name %>: new_attributes }, headers: valid_headers, as: :json
|
|
106
|
+
expect(response).to have_http_status(:ok)
|
|
107
|
+
expect(response.content_type).to match(a_string_including("application/json"))
|
|
108
|
+
end
|
|
109
|
+
end
|
|
110
|
+
|
|
111
|
+
context "with invalid parameters" do
|
|
112
|
+
it "renders a JSON response with errors for the <%= singular_table_name %>" do
|
|
113
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
114
|
+
patch <%= show_helper %>,
|
|
115
|
+
params: { <%= singular_table_name %>: invalid_attributes }, headers: valid_headers, as: :json
|
|
116
|
+
expect(response).to have_http_status(<%= Rack::Utils::SYMBOL_TO_STATUS_CODE.key(422).inspect %>)
|
|
117
|
+
expect(response.content_type).to match(a_string_including("application/json"))
|
|
118
|
+
end
|
|
119
|
+
end
|
|
120
|
+
end
|
|
121
|
+
|
|
122
|
+
describe "DELETE /destroy" do
|
|
123
|
+
it "destroys the requested <%= singular_table_name %>" do
|
|
124
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
125
|
+
expect {
|
|
126
|
+
delete <%= show_helper %>, headers: valid_headers, as: :json
|
|
127
|
+
}.to change(<%= class_name %>, :count).by(-1)
|
|
128
|
+
end
|
|
129
|
+
end
|
|
130
|
+
end
|
|
131
|
+
<% end -%>
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
require 'rails_helper'
|
|
2
|
+
|
|
3
|
+
# This spec was generated by rspec-rails when you ran the scaffold generator.
|
|
4
|
+
# It demonstrates how one might use RSpec to specify the controller code that
|
|
5
|
+
# was generated by Rails when you ran the scaffold generator.
|
|
6
|
+
#
|
|
7
|
+
# It assumes that the implementation code is generated by the rails scaffold
|
|
8
|
+
# generator. If you are using any extension libraries to generate different
|
|
9
|
+
# controller code, this generated spec may or may not pass.
|
|
10
|
+
#
|
|
11
|
+
# It only uses APIs available in rails and/or rspec-rails. There are a number
|
|
12
|
+
# of tools you can use to make these specs even more expressive, but we're
|
|
13
|
+
# sticking to rails and rspec-rails APIs to keep things simple and stable.
|
|
14
|
+
#
|
|
15
|
+
# Compared to earlier versions of this generator, there is very limited use of
|
|
16
|
+
# stubs and message expectations in this spec. Stubs are only used when there
|
|
17
|
+
# is no simpler way to get a handle on the object needed for the example.
|
|
18
|
+
# Message expectations are only used when there is no simpler way to specify
|
|
19
|
+
# that an instance is receiving a specific message.
|
|
20
|
+
#
|
|
21
|
+
# Also compared to earlier versions of this generator, there are no longer any
|
|
22
|
+
# expectations of assigns and templates rendered. These features have been
|
|
23
|
+
# removed from Rails core in Rails 5, but can be added back in via the
|
|
24
|
+
# `rails-controller-testing` gem.
|
|
25
|
+
|
|
26
|
+
<% module_namespacing do -%>
|
|
27
|
+
RSpec.describe <%= controller_class_name %>Controller, <%= type_metatag(:controller) %> do
|
|
28
|
+
|
|
29
|
+
# This should return the minimal set of attributes required to create a valid
|
|
30
|
+
# <%= class_name %>. As you add validations to <%= class_name %>, be sure to
|
|
31
|
+
# adjust the attributes here as well.
|
|
32
|
+
let(:valid_attributes) {
|
|
33
|
+
skip("Add a hash of attributes valid for your model")
|
|
34
|
+
}
|
|
35
|
+
|
|
36
|
+
let(:invalid_attributes) {
|
|
37
|
+
skip("Add a hash of attributes invalid for your model")
|
|
38
|
+
}
|
|
39
|
+
|
|
40
|
+
# This should return the minimal set of values that should be in the session
|
|
41
|
+
# in order to pass any filters (e.g. authentication) defined in
|
|
42
|
+
# <%= controller_class_name %>Controller. Be sure to keep this updated too.
|
|
43
|
+
let(:valid_session) { {} }
|
|
44
|
+
|
|
45
|
+
<% unless options[:singleton] -%>
|
|
46
|
+
describe "GET #index" do
|
|
47
|
+
it "returns a success response" do
|
|
48
|
+
<%= class_name %>.create! valid_attributes
|
|
49
|
+
get :index, params: {}, session: valid_session
|
|
50
|
+
expect(response).to be_successful
|
|
51
|
+
end
|
|
52
|
+
end
|
|
53
|
+
|
|
54
|
+
<% end -%>
|
|
55
|
+
describe "GET #show" do
|
|
56
|
+
it "returns a success response" do
|
|
57
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
58
|
+
get :show, params: {id: <%= file_name %>.to_param}, session: valid_session
|
|
59
|
+
expect(response).to be_successful
|
|
60
|
+
end
|
|
61
|
+
end
|
|
62
|
+
|
|
63
|
+
describe "GET #new" do
|
|
64
|
+
it "returns a success response" do
|
|
65
|
+
get :new, params: {}, session: valid_session
|
|
66
|
+
expect(response).to be_successful
|
|
67
|
+
end
|
|
68
|
+
end
|
|
69
|
+
|
|
70
|
+
describe "GET #edit" do
|
|
71
|
+
it "returns a success response" do
|
|
72
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
73
|
+
get :edit, params: {id: <%= file_name %>.to_param}, session: valid_session
|
|
74
|
+
expect(response).to be_successful
|
|
75
|
+
end
|
|
76
|
+
end
|
|
77
|
+
|
|
78
|
+
describe "POST #create" do
|
|
79
|
+
context "with valid params" do
|
|
80
|
+
it "creates a new <%= class_name %>" do
|
|
81
|
+
expect {
|
|
82
|
+
post :create, params: {<%= singular_table_name %>: valid_attributes}, session: valid_session
|
|
83
|
+
}.to change(<%= class_name %>, :count).by(1)
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
it "redirects to the created <%= singular_table_name %>" do
|
|
87
|
+
post :create, params: {<%= singular_table_name %>: valid_attributes}, session: valid_session
|
|
88
|
+
expect(response).to redirect_to(<%= class_name %>.last)
|
|
89
|
+
end
|
|
90
|
+
end
|
|
91
|
+
|
|
92
|
+
context "with invalid params" do
|
|
93
|
+
it "renders a response with 422 status (i.e. to display the 'new' template)" do
|
|
94
|
+
post :create, params: {<%= singular_table_name %>: invalid_attributes}, session: valid_session
|
|
95
|
+
expect(response).to have_http_status(<%= Rack::Utils::SYMBOL_TO_STATUS_CODE.key(422).inspect %>)
|
|
96
|
+
end
|
|
97
|
+
end
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
describe "PUT #update" do
|
|
101
|
+
context "with valid params" do
|
|
102
|
+
let(:new_attributes) {
|
|
103
|
+
skip("Add a hash of attributes valid for your model")
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
it "updates the requested <%= singular_table_name %>" do
|
|
107
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
108
|
+
put :update, params: {id: <%= file_name %>.to_param, <%= singular_table_name %>: new_attributes}, session: valid_session
|
|
109
|
+
<%= file_name %>.reload
|
|
110
|
+
skip("Add assertions for updated state")
|
|
111
|
+
end
|
|
112
|
+
|
|
113
|
+
it "redirects to the <%= singular_table_name %>" do
|
|
114
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
115
|
+
put :update, params: {id: <%= file_name %>.to_param, <%= singular_table_name %>: new_attributes}, session: valid_session
|
|
116
|
+
expect(response).to redirect_to(<%= file_name %>)
|
|
117
|
+
end
|
|
118
|
+
end
|
|
119
|
+
|
|
120
|
+
context "with invalid params" do
|
|
121
|
+
it "renders a response with 422 status (i.e. to display the 'edit' template)" do
|
|
122
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
123
|
+
put :update, params: {id: <%= file_name %>.to_param, <%= singular_table_name %>: invalid_attributes}, session: valid_session
|
|
124
|
+
expect(response).to have_http_status(<%= Rack::Utils::SYMBOL_TO_STATUS_CODE.key(422).inspect %>)
|
|
125
|
+
end
|
|
126
|
+
end
|
|
127
|
+
end
|
|
128
|
+
|
|
129
|
+
describe "DELETE #destroy" do
|
|
130
|
+
it "destroys the requested <%= singular_table_name %>" do
|
|
131
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
132
|
+
expect {
|
|
133
|
+
delete :destroy, params: {id: <%= file_name %>.to_param}, session: valid_session
|
|
134
|
+
}.to change(<%= class_name %>, :count).by(-1)
|
|
135
|
+
end
|
|
136
|
+
|
|
137
|
+
it "redirects to the <%= table_name %> list" do
|
|
138
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
139
|
+
delete :destroy, params: {id: <%= file_name %>.to_param}, session: valid_session
|
|
140
|
+
expect(response).to redirect_to(<%= index_helper %>_url)
|
|
141
|
+
end
|
|
142
|
+
end
|
|
143
|
+
|
|
144
|
+
end
|
|
145
|
+
<% end -%>
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
require 'rails_helper'
|
|
2
|
+
|
|
3
|
+
<% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%>
|
|
4
|
+
RSpec.describe "<%= ns_table_name %>/edit", <%= type_metatag(:view) %> do
|
|
5
|
+
let(:<%= singular_table_name %>) {
|
|
6
|
+
<%= class_name %>.create!(<%= ')' if output_attributes.empty? %>
|
|
7
|
+
<% output_attributes.each_with_index do |attribute, attribute_index| -%>
|
|
8
|
+
<%= attribute.name %>: <%= attribute.default.inspect %><%= attribute_index == output_attributes.length - 1 ? '' : ','%>
|
|
9
|
+
<% end -%>
|
|
10
|
+
<%= " )\n" unless output_attributes.empty? -%>
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
before(:each) do
|
|
14
|
+
assign(:<%= singular_table_name %>, <%= singular_table_name %>)
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
it "renders the edit <%= ns_file_name %> form" do
|
|
18
|
+
render
|
|
19
|
+
|
|
20
|
+
assert_select "form[action=?][method=?]", <%= ns_file_name %>_path(<%= singular_table_name %>), "post" do
|
|
21
|
+
<% for attribute in output_attributes -%>
|
|
22
|
+
<%- name = attribute.respond_to?(:column_name) ? attribute.column_name : attribute.name %>
|
|
23
|
+
assert_select "<%= attribute.input_type -%>[name=?]", "<%= ns_file_name %>[<%= name %>]"
|
|
24
|
+
<% end -%>
|
|
25
|
+
end
|
|
26
|
+
end
|
|
27
|
+
end
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
require 'rails_helper'
|
|
2
|
+
|
|
3
|
+
<% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%>
|
|
4
|
+
RSpec.describe "<%= ns_table_name %>/index", <%= type_metatag(:view) %> do
|
|
5
|
+
before(:each) do
|
|
6
|
+
assign(:<%= table_name %>, [
|
|
7
|
+
<% [1,2].each_with_index do |id, model_index| -%>
|
|
8
|
+
<%= class_name %>.create!(<%= output_attributes.empty? ? (model_index == 1 ? ')' : '),') : '' %>
|
|
9
|
+
<% output_attributes.each_with_index do |attribute, attribute_index| -%>
|
|
10
|
+
<%= attribute.name %>: <%= value_for(attribute) %><%= attribute_index == output_attributes.length - 1 ? '' : ','%>
|
|
11
|
+
<% end -%>
|
|
12
|
+
<% if !output_attributes.empty? -%>
|
|
13
|
+
<%= model_index == 1 ? ')' : '),' %>
|
|
14
|
+
<% end -%>
|
|
15
|
+
<% end -%>
|
|
16
|
+
])
|
|
17
|
+
end
|
|
18
|
+
|
|
19
|
+
it "renders a list of <%= ns_table_name %>" do
|
|
20
|
+
render
|
|
21
|
+
cell_selector = 'div>p'
|
|
22
|
+
<% for attribute in output_attributes -%>
|
|
23
|
+
assert_select cell_selector, text: Regexp.new(<%= value_for(attribute) %>.to_s), count: 2
|
|
24
|
+
<% end -%>
|
|
25
|
+
end
|
|
26
|
+
end
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
require 'rails_helper'
|
|
2
|
+
|
|
3
|
+
<% output_attributes = attributes.reject{|attribute| [:datetime, :timestamp, :time, :date].index(attribute.type) } -%>
|
|
4
|
+
RSpec.describe "<%= ns_table_name %>/new", <%= type_metatag(:view) %> do
|
|
5
|
+
before(:each) do
|
|
6
|
+
assign(:<%= singular_table_name %>, <%= class_name %>.new(<%= '))' if output_attributes.empty? %>
|
|
7
|
+
<% output_attributes.each_with_index do |attribute, attribute_index| -%>
|
|
8
|
+
<%= attribute.name %>: <%= attribute.default.inspect %><%= attribute_index == output_attributes.length - 1 ? '' : ','%>
|
|
9
|
+
<% end -%>
|
|
10
|
+
<%= !output_attributes.empty? ? " ))\n end" : " end" %>
|
|
11
|
+
|
|
12
|
+
it "renders new <%= ns_file_name %> form" do
|
|
13
|
+
render
|
|
14
|
+
|
|
15
|
+
assert_select "form[action=?][method=?]", <%= index_helper %>_path, "post" do
|
|
16
|
+
<% for attribute in output_attributes -%>
|
|
17
|
+
<%- name = attribute.respond_to?(:column_name) ? attribute.column_name : attribute.name %>
|
|
18
|
+
assert_select "<%= attribute.input_type -%>[name=?]", "<%= ns_file_name %>[<%= name %>]"
|
|
19
|
+
<% end -%>
|
|
20
|
+
end
|
|
21
|
+
end
|
|
22
|
+
end
|
|
@@ -0,0 +1,138 @@
|
|
|
1
|
+
require 'rails_helper'
|
|
2
|
+
|
|
3
|
+
# This spec was generated by rspec-rails when you ran the scaffold generator.
|
|
4
|
+
# It demonstrates how one might use RSpec to test the controller code that
|
|
5
|
+
# was generated by Rails when you ran the scaffold generator.
|
|
6
|
+
#
|
|
7
|
+
# It assumes that the implementation code is generated by the rails scaffold
|
|
8
|
+
# generator. If you are using any extension libraries to generate different
|
|
9
|
+
# controller code, this generated spec may or may not pass.
|
|
10
|
+
#
|
|
11
|
+
# It only uses APIs available in rails and/or rspec-rails. There are a number
|
|
12
|
+
# of tools you can use to make these specs even more expressive, but we're
|
|
13
|
+
# sticking to rails and rspec-rails APIs to keep things simple and stable.
|
|
14
|
+
|
|
15
|
+
<% module_namespacing do -%>
|
|
16
|
+
RSpec.describe "/<%= name.underscore.pluralize %>", <%= type_metatag(:request) %> do
|
|
17
|
+
<% if mountable_engine? -%>
|
|
18
|
+
include Engine.routes.url_helpers
|
|
19
|
+
<% end -%>
|
|
20
|
+
|
|
21
|
+
# This should return the minimal set of attributes required to create a valid
|
|
22
|
+
# <%= class_name %>. As you add validations to <%= class_name %>, be sure to
|
|
23
|
+
# adjust the attributes here as well.
|
|
24
|
+
let(:valid_attributes) {
|
|
25
|
+
skip("Add a hash of attributes valid for your model")
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
let(:invalid_attributes) {
|
|
29
|
+
skip("Add a hash of attributes invalid for your model")
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
<% unless options[:singleton] -%>
|
|
33
|
+
describe "GET /index" do
|
|
34
|
+
it "renders a successful response" do
|
|
35
|
+
<%= class_name %>.create! valid_attributes
|
|
36
|
+
get <%= index_helper %>_url
|
|
37
|
+
expect(response).to be_successful
|
|
38
|
+
end
|
|
39
|
+
end
|
|
40
|
+
<% end -%>
|
|
41
|
+
|
|
42
|
+
describe "GET /show" do
|
|
43
|
+
it "renders a successful response" do
|
|
44
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
45
|
+
get <%= show_helper %>
|
|
46
|
+
expect(response).to be_successful
|
|
47
|
+
end
|
|
48
|
+
end
|
|
49
|
+
|
|
50
|
+
describe "GET /new" do
|
|
51
|
+
it "renders a successful response" do
|
|
52
|
+
get <%= new_helper %>
|
|
53
|
+
expect(response).to be_successful
|
|
54
|
+
end
|
|
55
|
+
end
|
|
56
|
+
|
|
57
|
+
describe "GET /edit" do
|
|
58
|
+
it "renders a successful response" do
|
|
59
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
60
|
+
get <%= edit_helper %>
|
|
61
|
+
expect(response).to be_successful
|
|
62
|
+
end
|
|
63
|
+
end
|
|
64
|
+
|
|
65
|
+
describe "POST /create" do
|
|
66
|
+
context "with valid parameters" do
|
|
67
|
+
it "creates a new <%= class_name %>" do
|
|
68
|
+
expect {
|
|
69
|
+
post <%= index_helper %>_url, params: { <%= singular_table_name %>: valid_attributes }
|
|
70
|
+
}.to change(<%= class_name %>, :count).by(1)
|
|
71
|
+
end
|
|
72
|
+
|
|
73
|
+
it "redirects to the created <%= singular_table_name %>" do
|
|
74
|
+
post <%= index_helper %>_url, params: { <%= singular_table_name %>: valid_attributes }
|
|
75
|
+
expect(response).to redirect_to(<%= show_helper(class_name+".last") %>)
|
|
76
|
+
end
|
|
77
|
+
end
|
|
78
|
+
|
|
79
|
+
context "with invalid parameters" do
|
|
80
|
+
it "does not create a new <%= class_name %>" do
|
|
81
|
+
expect {
|
|
82
|
+
post <%= index_helper %>_url, params: { <%= singular_table_name %>: invalid_attributes }
|
|
83
|
+
}.to change(<%= class_name %>, :count).by(0)
|
|
84
|
+
end
|
|
85
|
+
|
|
86
|
+
it "renders a response with 422 status (i.e. to display the 'new' template)" do
|
|
87
|
+
post <%= index_helper %>_url, params: { <%= singular_table_name %>: invalid_attributes }
|
|
88
|
+
expect(response).to have_http_status(<%= Rack::Utils::SYMBOL_TO_STATUS_CODE.key(422).inspect %>)
|
|
89
|
+
end
|
|
90
|
+
end
|
|
91
|
+
end
|
|
92
|
+
|
|
93
|
+
describe "PATCH /update" do
|
|
94
|
+
context "with valid parameters" do
|
|
95
|
+
let(:new_attributes) {
|
|
96
|
+
skip("Add a hash of attributes valid for your model")
|
|
97
|
+
}
|
|
98
|
+
|
|
99
|
+
it "updates the requested <%= singular_table_name %>" do
|
|
100
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
101
|
+
patch <%= show_helper %>, params: { <%= singular_table_name %>: new_attributes }
|
|
102
|
+
<%= file_name %>.reload
|
|
103
|
+
skip("Add assertions for updated state")
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
it "redirects to the <%= singular_table_name %>" do
|
|
107
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
108
|
+
patch <%= show_helper %>, params: { <%= singular_table_name %>: new_attributes }
|
|
109
|
+
<%= file_name %>.reload
|
|
110
|
+
expect(response).to redirect_to(<%= singular_table_name %>_url(<%= file_name %>))
|
|
111
|
+
end
|
|
112
|
+
end
|
|
113
|
+
|
|
114
|
+
context "with invalid parameters" do
|
|
115
|
+
it "renders a response with 422 status (i.e. to display the 'edit' template)" do
|
|
116
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
117
|
+
patch <%= show_helper %>, params: { <%= singular_table_name %>: invalid_attributes }
|
|
118
|
+
expect(response).to have_http_status(<%= Rack::Utils::SYMBOL_TO_STATUS_CODE.key(422).inspect %>)
|
|
119
|
+
end
|
|
120
|
+
end
|
|
121
|
+
end
|
|
122
|
+
|
|
123
|
+
describe "DELETE /destroy" do
|
|
124
|
+
it "destroys the requested <%= singular_table_name %>" do
|
|
125
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
126
|
+
expect {
|
|
127
|
+
delete <%= show_helper %>
|
|
128
|
+
}.to change(<%= class_name %>, :count).by(-1)
|
|
129
|
+
end
|
|
130
|
+
|
|
131
|
+
it "redirects to the <%= table_name %> list" do
|
|
132
|
+
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
|
133
|
+
delete <%= show_helper %>
|
|
134
|
+
expect(response).to redirect_to(<%= index_helper %>_url)
|
|
135
|
+
end
|
|
136
|
+
end
|
|
137
|
+
end
|
|
138
|
+
<% end -%>
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
require "rails_helper"
|
|
2
|
+
|
|
3
|
+
<% module_namespacing do -%>
|
|
4
|
+
RSpec.describe <%= controller_class_name %>Controller, <%= type_metatag(:routing) %> do
|
|
5
|
+
describe "routing" do
|
|
6
|
+
<% unless options[:singleton] -%>
|
|
7
|
+
it "routes to #index" do
|
|
8
|
+
expect(get: "/<%= ns_table_name %>").to route_to("<%= ns_table_name %>#index")
|
|
9
|
+
end
|
|
10
|
+
|
|
11
|
+
<% end -%>
|
|
12
|
+
<% unless options[:api] -%>
|
|
13
|
+
it "routes to #new" do
|
|
14
|
+
expect(get: "/<%= ns_table_name %>/new").to route_to("<%= ns_table_name %>#new")
|
|
15
|
+
end
|
|
16
|
+
|
|
17
|
+
<% end -%>
|
|
18
|
+
it "routes to #show" do
|
|
19
|
+
expect(get: "/<%= ns_table_name %>/1").to route_to("<%= ns_table_name %>#show", id: "1")
|
|
20
|
+
end
|
|
21
|
+
|
|
22
|
+
<% unless options[:api] -%>
|
|
23
|
+
it "routes to #edit" do
|
|
24
|
+
expect(get: "/<%= ns_table_name %>/1/edit").to route_to("<%= ns_table_name %>#edit", id: "1")
|
|
25
|
+
end
|
|
26
|
+
|
|
27
|
+
<% end -%>
|
|
28
|
+
|
|
29
|
+
it "routes to #create" do
|
|
30
|
+
expect(post: "/<%= ns_table_name %>").to route_to("<%= ns_table_name %>#create")
|
|
31
|
+
end
|
|
32
|
+
|
|
33
|
+
it "routes to #update via PUT" do
|
|
34
|
+
expect(put: "/<%= ns_table_name %>/1").to route_to("<%= ns_table_name %>#update", id: "1")
|
|
35
|
+
end
|
|
36
|
+
|
|
37
|
+
it "routes to #update via PATCH" do
|
|
38
|
+
expect(patch: "/<%= ns_table_name %>/1").to route_to("<%= ns_table_name %>#update", id: "1")
|
|
39
|
+
end
|
|
40
|
+
|
|
41
|
+
it "routes to #destroy" do
|
|
42
|
+
expect(delete: "/<%= ns_table_name %>/1").to route_to("<%= ns_table_name %>#destroy", id: "1")
|
|
43
|
+
end
|
|
44
|
+
end
|
|
45
|
+
end
|
|
46
|
+
<% end -%>
|