rails-controller-testing 0.1.0 → 0.1.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/README.md +1 -1
- data/lib/rails-controller-testing.rb +3 -0
- data/lib/rails/controller/testing/version.rb +1 -1
- data/test/controllers/assigns_test.rb +0 -1
- data/test/controllers/template_assertions_test.rb +0 -1
- data/test/dummy/app/controllers/assigns_controller.rb +1 -1
- data/test/dummy/app/controllers/view_assigns_controller.rb +1 -1
- data/test/dummy/config/environments/test.rb +5 -3
- data/test/dummy/config/initializers/assets.rb +1 -1
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/test.log +9093 -0
- data/test/helpers/template_assertions_test.rb +0 -1
- metadata +41 -37
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: rails-controller-testing
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.1.
|
4
|
+
version: 0.1.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Rails Core Team
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2016-
|
11
|
+
date: 2016-03-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: actionpack
|
@@ -136,6 +136,8 @@ files:
|
|
136
136
|
- test/dummy/config/locales/en.yml
|
137
137
|
- test/dummy/config/routes.rb
|
138
138
|
- test/dummy/config/secrets.yml
|
139
|
+
- test/dummy/db/test.sqlite3
|
140
|
+
- test/dummy/log/test.log
|
139
141
|
- test/dummy/public/404.html
|
140
142
|
- test/dummy/public/422.html
|
141
143
|
- test/dummy/public/500.html
|
@@ -168,53 +170,55 @@ signing_key:
|
|
168
170
|
specification_version: 4
|
169
171
|
summary: Extracting `assigns` and `assert_template` from ActionDispatch.
|
170
172
|
test_files:
|
173
|
+
- test/test_helper.rb
|
171
174
|
- test/controllers/assigns_test.rb
|
172
175
|
- test/controllers/template_assertions_test.rb
|
176
|
+
- test/integration/template_assertions_test.rb
|
177
|
+
- test/helpers/template_assertions_test.rb
|
178
|
+
- test/dummy/log/test.log
|
179
|
+
- test/dummy/README.rdoc
|
180
|
+
- test/dummy/config.ru
|
181
|
+
- test/dummy/Rakefile
|
173
182
|
- test/dummy/app/controllers/assigns_controller.rb
|
174
|
-
- test/dummy/app/controllers/template_assertions_controller.rb
|
175
183
|
- test/dummy/app/controllers/view_assigns_controller.rb
|
184
|
+
- test/dummy/app/controllers/template_assertions_controller.rb
|
176
185
|
- test/dummy/app/helpers/application_helper.rb
|
177
|
-
- test/dummy/app/views/layouts/application.html.erb
|
178
|
-
- test/dummy/app/views/layouts/standard.html.erb
|
179
|
-
- test/dummy/app/views/test/_directory/_partial_with_locales.html.erb
|
180
|
-
- test/dummy/app/views/test/_layout_for_partial.html.erb
|
181
|
-
- test/dummy/app/views/test/_partial.html.erb
|
182
|
-
- test/dummy/app/views/test/_partial_for_use_in_layout.html.erb
|
183
|
-
- test/dummy/app/views/test/calling_partial_with_layout.html.erb
|
184
186
|
- test/dummy/app/views/test/hello/hello.html.erb
|
187
|
+
- test/dummy/app/views/test/render_two_partials.html.erb
|
188
|
+
- test/dummy/app/views/test/_layout_for_partial.html.erb
|
185
189
|
- test/dummy/app/views/test/hello_world.html.erb
|
186
|
-
- test/dummy/app/views/test/hello_world_with_partial.html.erb
|
187
190
|
- test/dummy/app/views/test/render_partial_inside_directory.html.erb
|
188
|
-
- test/dummy/app/views/test/
|
189
|
-
- test/dummy/
|
191
|
+
- test/dummy/app/views/test/_directory/_partial_with_locales.html.erb
|
192
|
+
- test/dummy/app/views/test/calling_partial_with_layout.html.erb
|
193
|
+
- test/dummy/app/views/test/_partial_for_use_in_layout.html.erb
|
194
|
+
- test/dummy/app/views/test/hello_world_with_partial.html.erb
|
195
|
+
- test/dummy/app/views/test/_partial.html.erb
|
196
|
+
- test/dummy/app/views/layouts/application.html.erb
|
197
|
+
- test/dummy/app/views/layouts/standard.html.erb
|
198
|
+
- test/dummy/public/422.html
|
199
|
+
- test/dummy/public/favicon.ico
|
200
|
+
- test/dummy/public/500.html
|
201
|
+
- test/dummy/public/404.html
|
202
|
+
- test/dummy/bin/setup
|
190
203
|
- test/dummy/bin/rails
|
191
204
|
- test/dummy/bin/rake
|
192
|
-
- test/dummy/bin/
|
205
|
+
- test/dummy/bin/bundle
|
206
|
+
- test/dummy/config/routes.rb
|
193
207
|
- test/dummy/config/application.rb
|
194
|
-
- test/dummy/config/
|
195
|
-
- test/dummy/config/
|
196
|
-
- test/dummy/config/
|
197
|
-
- test/dummy/config/
|
198
|
-
- test/dummy/config/environments/production.rb
|
199
|
-
- test/dummy/config/environments/test.rb
|
200
|
-
- test/dummy/config/initializers/assets.rb
|
208
|
+
- test/dummy/config/initializers/wrap_parameters.rb
|
209
|
+
- test/dummy/config/initializers/session_store.rb
|
210
|
+
- test/dummy/config/initializers/mime_types.rb
|
211
|
+
- test/dummy/config/initializers/inflections.rb
|
201
212
|
- test/dummy/config/initializers/backtrace_silencers.rb
|
202
213
|
- test/dummy/config/initializers/cookies_serializer.rb
|
203
214
|
- test/dummy/config/initializers/filter_parameter_logging.rb
|
204
|
-
- test/dummy/config/initializers/
|
205
|
-
- test/dummy/config/initializers/mime_types.rb
|
206
|
-
- test/dummy/config/initializers/session_store.rb
|
207
|
-
- test/dummy/config/initializers/wrap_parameters.rb
|
208
|
-
- test/dummy/config/locales/en.yml
|
209
|
-
- test/dummy/config/routes.rb
|
215
|
+
- test/dummy/config/initializers/assets.rb
|
210
216
|
- test/dummy/config/secrets.yml
|
211
|
-
- test/dummy/config.
|
212
|
-
- test/dummy/
|
213
|
-
- test/dummy/
|
214
|
-
- test/dummy/
|
215
|
-
- test/dummy/
|
216
|
-
- test/dummy/
|
217
|
-
- test/dummy/
|
218
|
-
- test/
|
219
|
-
- test/integration/template_assertions_test.rb
|
220
|
-
- test/test_helper.rb
|
217
|
+
- test/dummy/config/database.yml
|
218
|
+
- test/dummy/config/environments/development.rb
|
219
|
+
- test/dummy/config/environments/test.rb
|
220
|
+
- test/dummy/config/environments/production.rb
|
221
|
+
- test/dummy/config/boot.rb
|
222
|
+
- test/dummy/config/locales/en.yml
|
223
|
+
- test/dummy/config/environment.rb
|
224
|
+
- test/dummy/db/test.sqlite3
|