rspec-rails 8.0.1 → 8.0.2
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 +4 -4
- checksums.yaml.gz.sig +0 -0
- data/Changelog.md +9 -1
- data/lib/generators/rspec/scaffold/templates/api_controller_spec.rb +2 -2
- data/lib/generators/rspec/scaffold/templates/api_request_spec.rb +2 -2
- data/lib/generators/rspec/scaffold/templates/controller_spec.rb +2 -2
- data/lib/generators/rspec/scaffold/templates/request_spec.rb +2 -2
- data/lib/rspec/rails/version.rb +1 -1
- data.tar.gz.sig +0 -0
- metadata +2 -2
- metadata.gz.sig +0 -0
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f91cdd755050320a56d2b22f9a71dce0e3a08531bca816bfa46939fb95382e80
|
4
|
+
data.tar.gz: 58b0416057f161a577a7d855217aca33e53afbba730eb7e785fcd7042300d8ae
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1257f664e0336b60421ac0823fed2a63ab9fedbb08133c48a133047c49b1360a8686fcba4d4537c69598dd9b2ce1ec6edd969840b020d8f245f38771be294e87
|
7
|
+
data.tar.gz: 95a25f36d5bb3c1f669bedc0511eedfa461ff729162dcaecba2101e983921a1f2b4a053ef53c68fa43a12134b7b77b4df61746153ee157bb9cda348372754d2c
|
checksums.yaml.gz.sig
CHANGED
Binary file
|
data/Changelog.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
### Development
|
2
|
-
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v8.0.
|
2
|
+
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v8.0.2...8-0-maintenance)
|
3
|
+
|
4
|
+
### 8.0.2 / 2025-08-12
|
5
|
+
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v8.0.1...v8.0.2)
|
6
|
+
|
7
|
+
Bug Fixes:
|
8
|
+
|
9
|
+
* Fix scaffold generator producing deprecated Rack http statuses.
|
10
|
+
(Taketo Takashima, rspec/rspec-rails#2860)
|
3
11
|
|
4
12
|
### 8.0.1 / 2025-06-19
|
5
13
|
[Full Changelog](https://github.com/rspec/rspec-rails/compare/v8.0.0...v8.0.1)
|
@@ -79,7 +79,7 @@ RSpec.describe <%= controller_class_name %>Controller, <%= type_metatag(:control
|
|
79
79
|
context "with invalid params" do
|
80
80
|
it "renders a JSON response with errors for the new <%= singular_table_name %>" do
|
81
81
|
post :create, params: {<%= singular_table_name %>: invalid_attributes}, session: valid_session
|
82
|
-
expect(response).to have_http_status(
|
82
|
+
expect(response).to have_http_status(<%= Rack::Utils::SYMBOL_TO_STATUS_CODE.key(422).inspect %>)
|
83
83
|
expect(response.content_type).to eq('application/json')
|
84
84
|
end
|
85
85
|
end
|
@@ -110,7 +110,7 @@ RSpec.describe <%= controller_class_name %>Controller, <%= type_metatag(:control
|
|
110
110
|
it "renders a JSON response with errors for the <%= singular_table_name %>" do
|
111
111
|
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
112
112
|
put :update, params: {id: <%= file_name %>.to_param, <%= singular_table_name %>: invalid_attributes}, session: valid_session
|
113
|
-
expect(response).to have_http_status(
|
113
|
+
expect(response).to have_http_status(<%= Rack::Utils::SYMBOL_TO_STATUS_CODE.key(422).inspect %>)
|
114
114
|
expect(response.content_type).to eq('application/json')
|
115
115
|
end
|
116
116
|
end
|
@@ -79,7 +79,7 @@ RSpec.describe "/<%= name.underscore.pluralize %>", <%= type_metatag(:request) %
|
|
79
79
|
it "renders a JSON response with errors for the new <%= singular_table_name %>" do
|
80
80
|
post <%= index_helper %>_url,
|
81
81
|
params: { <%= singular_table_name %>: invalid_attributes }, headers: valid_headers, as: :json
|
82
|
-
expect(response).to have_http_status(
|
82
|
+
expect(response).to have_http_status(<%= Rack::Utils::SYMBOL_TO_STATUS_CODE.key(422).inspect %>)
|
83
83
|
expect(response.content_type).to match(a_string_including("application/json"))
|
84
84
|
end
|
85
85
|
end
|
@@ -113,7 +113,7 @@ RSpec.describe "/<%= name.underscore.pluralize %>", <%= type_metatag(:request) %
|
|
113
113
|
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
114
114
|
patch <%= show_helper %>,
|
115
115
|
params: { <%= singular_table_name %>: invalid_attributes }, headers: valid_headers, as: :json
|
116
|
-
expect(response).to have_http_status(
|
116
|
+
expect(response).to have_http_status(<%= Rack::Utils::SYMBOL_TO_STATUS_CODE.key(422).inspect %>)
|
117
117
|
expect(response.content_type).to match(a_string_including("application/json"))
|
118
118
|
end
|
119
119
|
end
|
@@ -92,7 +92,7 @@ RSpec.describe <%= controller_class_name %>Controller, <%= type_metatag(:control
|
|
92
92
|
context "with invalid params" do
|
93
93
|
it "renders a response with 422 status (i.e. to display the 'new' template)" do
|
94
94
|
post :create, params: {<%= singular_table_name %>: invalid_attributes}, session: valid_session
|
95
|
-
expect(response).to have_http_status(
|
95
|
+
expect(response).to have_http_status(<%= Rack::Utils::SYMBOL_TO_STATUS_CODE.key(422).inspect %>)
|
96
96
|
end
|
97
97
|
end
|
98
98
|
end
|
@@ -121,7 +121,7 @@ RSpec.describe <%= controller_class_name %>Controller, <%= type_metatag(:control
|
|
121
121
|
it "renders a response with 422 status (i.e. to display the 'edit' template)" do
|
122
122
|
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
123
123
|
put :update, params: {id: <%= file_name %>.to_param, <%= singular_table_name %>: invalid_attributes}, session: valid_session
|
124
|
-
expect(response).to have_http_status(
|
124
|
+
expect(response).to have_http_status(<%= Rack::Utils::SYMBOL_TO_STATUS_CODE.key(422).inspect %>)
|
125
125
|
end
|
126
126
|
end
|
127
127
|
end
|
@@ -85,7 +85,7 @@ RSpec.describe "/<%= name.underscore.pluralize %>", <%= type_metatag(:request) %
|
|
85
85
|
|
86
86
|
it "renders a response with 422 status (i.e. to display the 'new' template)" do
|
87
87
|
post <%= index_helper %>_url, params: { <%= singular_table_name %>: invalid_attributes }
|
88
|
-
expect(response).to have_http_status(
|
88
|
+
expect(response).to have_http_status(<%= Rack::Utils::SYMBOL_TO_STATUS_CODE.key(422).inspect %>)
|
89
89
|
end
|
90
90
|
end
|
91
91
|
end
|
@@ -115,7 +115,7 @@ RSpec.describe "/<%= name.underscore.pluralize %>", <%= type_metatag(:request) %
|
|
115
115
|
it "renders a response with 422 status (i.e. to display the 'edit' template)" do
|
116
116
|
<%= file_name %> = <%= class_name %>.create! valid_attributes
|
117
117
|
patch <%= show_helper %>, params: { <%= singular_table_name %>: invalid_attributes }
|
118
|
-
expect(response).to have_http_status(
|
118
|
+
expect(response).to have_http_status(<%= Rack::Utils::SYMBOL_TO_STATUS_CODE.key(422).inspect %>)
|
119
119
|
end
|
120
120
|
end
|
121
121
|
end
|
data/lib/rspec/rails/version.rb
CHANGED
data.tar.gz.sig
CHANGED
Binary file
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rspec-rails
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 8.0.
|
4
|
+
version: 8.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- David Chelimsky
|
@@ -297,7 +297,7 @@ licenses:
|
|
297
297
|
- MIT
|
298
298
|
metadata:
|
299
299
|
bug_tracker_uri: https://github.com/rspec/rspec-rails/issues
|
300
|
-
changelog_uri: https://github.com/rspec/rspec-rails/blob/v8.0.
|
300
|
+
changelog_uri: https://github.com/rspec/rspec-rails/blob/v8.0.2/Changelog.md
|
301
301
|
documentation_uri: https://rspec.info/documentation/
|
302
302
|
mailing_list_uri: https://groups.google.com/forum/#!forum/rspec
|
303
303
|
source_code_uri: https://github.com/rspec/rspec-rails
|
metadata.gz.sig
CHANGED
Binary file
|