prototypical 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.
Files changed (54) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +34 -0
  4. data/lib/prototypical.rb +10 -0
  5. data/lib/prototypical/configuration.rb +13 -0
  6. data/lib/prototypical/controller.rb +18 -0
  7. data/lib/prototypical/railtie.rb +20 -0
  8. data/lib/prototypical/version.rb +3 -0
  9. data/lib/tasks/prototypical_tasks.rake +4 -0
  10. data/test/dummy/README.rdoc +28 -0
  11. data/test/dummy/Rakefile +6 -0
  12. data/test/dummy/app/assets/javascripts/application.js +13 -0
  13. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  14. data/test/dummy/app/controllers/application_controller.rb +5 -0
  15. data/test/dummy/app/controllers/static_controller.rb +16 -0
  16. data/test/dummy/app/helpers/application_helper.rb +2 -0
  17. data/test/dummy/app/prototypes/static/disabled_prototype.html.erb +1 -0
  18. data/test/dummy/app/prototypes/static/enabled_prototype.html.erb +1 -0
  19. data/test/dummy/app/views/layouts/application.html.erb +13 -0
  20. data/test/dummy/app/views/static/disabled_prototype.html.erb +1 -0
  21. data/test/dummy/app/views/static/enabled_prototype.html.erb +1 -0
  22. data/test/dummy/app/views/static/home.html.erb +0 -0
  23. data/test/dummy/bin/bundle +3 -0
  24. data/test/dummy/bin/rails +4 -0
  25. data/test/dummy/bin/rake +4 -0
  26. data/test/dummy/bin/setup +29 -0
  27. data/test/dummy/config.ru +4 -0
  28. data/test/dummy/config/application.rb +29 -0
  29. data/test/dummy/config/boot.rb +5 -0
  30. data/test/dummy/config/environment.rb +5 -0
  31. data/test/dummy/config/environments/development.rb +38 -0
  32. data/test/dummy/config/environments/production.rb +76 -0
  33. data/test/dummy/config/environments/test.rb +42 -0
  34. data/test/dummy/config/initializers/assets.rb +11 -0
  35. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  36. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  37. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  38. data/test/dummy/config/initializers/inflections.rb +16 -0
  39. data/test/dummy/config/initializers/mime_types.rb +4 -0
  40. data/test/dummy/config/initializers/session_store.rb +3 -0
  41. data/test/dummy/config/initializers/wrap_parameters.rb +9 -0
  42. data/test/dummy/config/locales/en.yml +23 -0
  43. data/test/dummy/config/routes.rb +61 -0
  44. data/test/dummy/config/secrets.yml +22 -0
  45. data/test/dummy/log/test.log +1574 -0
  46. data/test/dummy/public/404.html +67 -0
  47. data/test/dummy/public/422.html +67 -0
  48. data/test/dummy/public/500.html +66 -0
  49. data/test/dummy/public/favicon.ico +0 -0
  50. data/test/integration/root_test.rb +20 -0
  51. data/test/lib/prototypical/controller_test.rb +73 -0
  52. data/test/prototypical_test.rb +7 -0
  53. data/test/test_helper.rb +20 -0
  54. metadata +155 -0
@@ -0,0 +1,42 @@
1
+ Rails.application.configure do
2
+ # Settings specified here will take precedence over those in config/application.rb.
3
+
4
+ # The test environment is used exclusively to run your application's
5
+ # test suite. You never need to work with it otherwise. Remember that
6
+ # your test database is "scratch space" for the test suite and is wiped
7
+ # and recreated between test runs. Don't rely on the data there!
8
+ config.cache_classes = true
9
+
10
+ # Do not eager load code on boot. This avoids loading your whole application
11
+ # just for the purpose of running a single test. If you are using a tool that
12
+ # preloads Rails for running tests, you may have to set it to true.
13
+ config.eager_load = false
14
+
15
+ # Configure static file server for tests with Cache-Control for performance.
16
+ config.serve_static_files = true
17
+ config.static_cache_control = 'public, max-age=3600'
18
+
19
+ # Show full error reports and disable caching.
20
+ config.consider_all_requests_local = true
21
+ config.action_controller.perform_caching = false
22
+
23
+ # Raise exceptions instead of rendering exception templates.
24
+ config.action_dispatch.show_exceptions = false
25
+
26
+ # Disable request forgery protection in test environment.
27
+ config.action_controller.allow_forgery_protection = false
28
+
29
+ # Tell Action Mailer not to deliver emails to the real world.
30
+ # The :test delivery method accumulates sent emails in the
31
+ # ActionMailer::Base.deliveries array.
32
+ config.action_mailer.delivery_method = :test
33
+
34
+ # Randomize the order test cases are executed.
35
+ config.active_support.test_order = :random
36
+
37
+ # Print deprecation notices to the stderr.
38
+ config.active_support.deprecation = :stderr
39
+
40
+ # Raises error for missing translations
41
+ # config.action_view.raise_on_missing_translations = true
42
+ end
@@ -0,0 +1,11 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Version of your assets, change this if you want to expire all your assets.
4
+ Rails.application.config.assets.version = '1.0'
5
+
6
+ # Add additional assets to the asset load path
7
+ # Rails.application.config.assets.paths << Emoji.images_path
8
+
9
+ # Precompile additional assets.
10
+ # application.js, application.css, and all non-JS/CSS in app/assets folder are already added.
11
+ # Rails.application.config.assets.precompile += %w( search.js )
@@ -0,0 +1,7 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # You can add backtrace silencers for libraries that you're using but don't wish to see in your backtraces.
4
+ # Rails.backtrace_cleaner.add_silencer { |line| line =~ /my_noisy_library/ }
5
+
6
+ # You can also remove all the silencers if you're trying to debug a problem that might stem from framework code.
7
+ # Rails.backtrace_cleaner.remove_silencers!
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.action_dispatch.cookies_serializer = :json
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Configure sensitive parameters which will be filtered from the log file.
4
+ Rails.application.config.filter_parameters += [:password]
@@ -0,0 +1,16 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new inflection rules using the following format. Inflections
4
+ # are locale specific, and you may define rules for as many different
5
+ # locales as you wish. All of these examples are active by default:
6
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
7
+ # inflect.plural /^(ox)$/i, '\1en'
8
+ # inflect.singular /^(ox)en/i, '\1'
9
+ # inflect.irregular 'person', 'people'
10
+ # inflect.uncountable %w( fish sheep )
11
+ # end
12
+
13
+ # These inflection rules are supported but not enabled by default:
14
+ # ActiveSupport::Inflector.inflections(:en) do |inflect|
15
+ # inflect.acronym 'RESTful'
16
+ # end
@@ -0,0 +1,4 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Add new mime types for use in respond_to blocks:
4
+ # Mime::Type.register "text/richtext", :rtf
@@ -0,0 +1,3 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ Rails.application.config.session_store :cookie_store, key: '_dummy_session'
@@ -0,0 +1,9 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # This file contains settings for ActionController::ParamsWrapper which
4
+ # is enabled by default.
5
+
6
+ # Enable parameter wrapping for JSON. You can disable this by setting :format to an empty array.
7
+ ActiveSupport.on_load(:action_controller) do
8
+ wrap_parameters format: [:json] if respond_to?(:wrap_parameters)
9
+ end
@@ -0,0 +1,23 @@
1
+ # Files in the config/locales directory are used for internationalization
2
+ # and are automatically loaded by Rails. If you want to use locales other
3
+ # than English, add the necessary files in this directory.
4
+ #
5
+ # To use the locales, use `I18n.t`:
6
+ #
7
+ # I18n.t 'hello'
8
+ #
9
+ # In views, this is aliased to just `t`:
10
+ #
11
+ # <%= t('hello') %>
12
+ #
13
+ # To use a different locale, set it with `I18n.locale`:
14
+ #
15
+ # I18n.locale = :es
16
+ #
17
+ # This would use the information in config/locales/es.yml.
18
+ #
19
+ # To learn more, please read the Rails Internationalization guide
20
+ # available at http://guides.rubyonrails.org/i18n.html.
21
+
22
+ en:
23
+ hello: "Hello world"
@@ -0,0 +1,61 @@
1
+ Rails.application.routes.draw do
2
+ # The priority is based upon order of creation: first created -> highest priority.
3
+ # See how all your routes lay out with "rake routes".
4
+
5
+ # You can have the root of your site routed with "root"
6
+ # root 'welcome#index'
7
+
8
+ # Example of regular route:
9
+ # get 'products/:id' => 'catalog#view'
10
+
11
+ # Example of named route that can be invoked with purchase_url(id: product.id)
12
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
13
+
14
+ # Example resource route (maps HTTP verbs to controller actions automatically):
15
+ # resources :products
16
+
17
+ # Example resource route with options:
18
+ # resources :products do
19
+ # member do
20
+ # get 'short'
21
+ # post 'toggle'
22
+ # end
23
+ #
24
+ # collection do
25
+ # get 'sold'
26
+ # end
27
+ # end
28
+
29
+ # Example resource route with sub-resources:
30
+ # resources :products do
31
+ # resources :comments, :sales
32
+ # resource :seller
33
+ # end
34
+
35
+ # Example resource route with more complex sub-resources:
36
+ # resources :products do
37
+ # resources :comments
38
+ # resources :sales do
39
+ # get 'recent', on: :collection
40
+ # end
41
+ # end
42
+
43
+ # Example resource route with concerns:
44
+ # concern :toggleable do
45
+ # post 'toggle'
46
+ # end
47
+ # resources :posts, concerns: :toggleable
48
+ # resources :photos, concerns: :toggleable
49
+
50
+ # Example resource route within a namespace:
51
+ # namespace :admin do
52
+ # # Directs /admin/products/* to Admin::ProductsController
53
+ # # (app/controllers/admin/products_controller.rb)
54
+ # resources :products
55
+ # end
56
+
57
+ get '/enabled_prototype' => 'static#enabled_prototype'
58
+ get '/disabled_prototype' => 'static#disabled_prototype'
59
+
60
+ root 'static#home'
61
+ end
@@ -0,0 +1,22 @@
1
+ # Be sure to restart your server when you modify this file.
2
+
3
+ # Your secret key is used for verifying the integrity of signed cookies.
4
+ # If you change this key, all old signed cookies will become invalid!
5
+
6
+ # Make sure the secret is at least 30 characters and all random,
7
+ # no regular words or you'll be exposed to dictionary attacks.
8
+ # You can use `rake secret` to generate a secure secret key.
9
+
10
+ # Make sure the secrets in this file are kept private
11
+ # if you're sharing your code publicly.
12
+
13
+ development:
14
+ secret_key_base: 1eee8d0e4f228128cb72a308442e0a4ca61d7db7d19b428d7d221f8b32c2a87fe357876f47ea67e5589450cb8f3fa49a805acdef43c890bbbe1b117f588c6ff7
15
+
16
+ test:
17
+ secret_key_base: ec4bb8bfd3fdc32fd6a029898d8d832b9ec5e526238aa31af067649062e259d7464e3f911ba43a11c14af5e020174fde84de0ac886f8b4c853f885d5b9c7f2b8
18
+
19
+ # Do not keep production secrets in the repository,
20
+ # instead read values from the environment.
21
+ production:
22
+ secret_key_base: <%= ENV["SECRET_KEY_BASE"] %>
@@ -0,0 +1,1574 @@
1
+ ----------------------------
2
+ PrototypicalTest: test_truth
3
+ ----------------------------
4
+ -------------------------------
5
+ RootTest: test_0001_should work
6
+ -------------------------------
7
+ ---------------------------------
8
+ PrototypicalTest: test_0001_truth
9
+ ---------------------------------
10
+ -------------------------------
11
+ RootTest: test_0001_should work
12
+ -------------------------------
13
+ Started GET "/" for 127.0.0.1 at 2015-12-07 22:54:59 +0000
14
+ ---------------------------------
15
+ PrototypicalTest: test_0001_truth
16
+ ---------------------------------
17
+ ---------------------------------
18
+ PrototypicalTest: test_0001_truth
19
+ ---------------------------------
20
+ -------------------------------
21
+ RootTest: test_0001_should work
22
+ -------------------------------
23
+ Started GET "/" for 127.0.0.1 at 2015-12-07 22:56:20 +0000
24
+ -------------------------------
25
+ RootTest: test_0001_should work
26
+ -------------------------------
27
+ Started GET "/" for 127.0.0.1 at 2015-12-07 22:56:58 +0000
28
+ ---------------------------------
29
+ PrototypicalTest: test_0001_truth
30
+ ---------------------------------
31
+ ---------------------------------
32
+ PrototypicalTest: test_0001_truth
33
+ ---------------------------------
34
+ -------------------------------
35
+ RootTest: test_0001_should work
36
+ -------------------------------
37
+ Started GET "/" for 127.0.0.1 at 2015-12-07 22:57:25 +0000
38
+ Processing by StaticController#home as HTML
39
+ Rendered static/home.html.erb within layouts/application (0.7ms)
40
+ Completed 200 OK in 6ms (Views: 5.6ms)
41
+ -------------------------------
42
+ RootTest: test_0001_should work
43
+ -------------------------------
44
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:03:52 +0000
45
+ Processing by StaticController#home as HTML
46
+ Rendered static/home.html.erb within layouts/application (0.7ms)
47
+ Completed 200 OK in 5ms (Views: 5.3ms)
48
+ --------------------------------------------------------------
49
+ RootTest: test_0002_should display a prototype if there is one
50
+ --------------------------------------------------------------
51
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:03:52 +0000
52
+ ---------------------------------
53
+ PrototypicalTest: test_0001_truth
54
+ ---------------------------------
55
+ ---------------------------------
56
+ PrototypicalTest: test_0001_truth
57
+ ---------------------------------
58
+ -------------------------------
59
+ RootTest: test_0001_should work
60
+ -------------------------------
61
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:09:59 +0000
62
+ --------------------------------------------------------------
63
+ RootTest: test_0002_should display a prototype if there is one
64
+ --------------------------------------------------------------
65
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:09:59 +0000
66
+ -------------------------------
67
+ RootTest: test_0001_should work
68
+ -------------------------------
69
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:10:15 +0000
70
+ --------------------------------------------------------------
71
+ RootTest: test_0002_should display a prototype if there is one
72
+ --------------------------------------------------------------
73
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:10:15 +0000
74
+ ---------------------------------
75
+ PrototypicalTest: test_0001_truth
76
+ ---------------------------------
77
+ ---------------------------------
78
+ PrototypicalTest: test_0001_truth
79
+ ---------------------------------
80
+ --------------------------------------------------------------
81
+ RootTest: test_0002_should display a prototype if there is one
82
+ --------------------------------------------------------------
83
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:12:50 +0000
84
+ -------------------------------
85
+ RootTest: test_0001_should work
86
+ -------------------------------
87
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:12:50 +0000
88
+ -------------------------------
89
+ RootTest: test_0001_should work
90
+ -------------------------------
91
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:13:49 +0000
92
+ --------------------------------------------------------------
93
+ RootTest: test_0002_should display a prototype if there is one
94
+ --------------------------------------------------------------
95
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:13:49 +0000
96
+ ---------------------------------
97
+ PrototypicalTest: test_0001_truth
98
+ ---------------------------------
99
+ -------------------------------
100
+ RootTest: test_0001_should work
101
+ -------------------------------
102
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:14:24 +0000
103
+ Processing by StaticController#home as HTML
104
+ Rendered static/home.html.erb within layouts/application (0.6ms)
105
+ Completed 200 OK in 5ms (Views: 5.1ms)
106
+ --------------------------------------------------------------
107
+ RootTest: test_0002_should display a prototype if there is one
108
+ --------------------------------------------------------------
109
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:14:24 +0000
110
+ ---------------------------------
111
+ PrototypicalTest: test_0001_truth
112
+ ---------------------------------
113
+ ---------------------------------
114
+ PrototypicalTest: test_0001_truth
115
+ ---------------------------------
116
+ -------------------------------
117
+ RootTest: test_0001_should work
118
+ -------------------------------
119
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:14:39 +0000
120
+ --------------------------------------------------------------
121
+ RootTest: test_0002_should display a prototype if there is one
122
+ --------------------------------------------------------------
123
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:14:39 +0000
124
+ -------------------------------
125
+ RootTest: test_0001_should work
126
+ -------------------------------
127
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:15:41 +0000
128
+ Processing by StaticController#home as HTML
129
+ Rendered static/home.html.erb within layouts/application (0.8ms)
130
+ Completed 200 OK in 7ms (Views: 7.3ms)
131
+ --------------------------------------------------------------
132
+ RootTest: test_0002_should display a prototype if there is one
133
+ --------------------------------------------------------------
134
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:15:41 +0000
135
+ ---------------------------------
136
+ PrototypicalTest: test_0001_truth
137
+ ---------------------------------
138
+ ---------------------------------
139
+ PrototypicalTest: test_0001_truth
140
+ ---------------------------------
141
+ -------------------------------
142
+ RootTest: test_0001_should work
143
+ -------------------------------
144
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:16:06 +0000
145
+ Processing by StaticController#home as HTML
146
+ Rendered static/home.html.erb within layouts/application (0.7ms)
147
+ Completed 200 OK in 5ms (Views: 5.2ms)
148
+ --------------------------------------------------------------
149
+ RootTest: test_0002_should display a prototype if there is one
150
+ --------------------------------------------------------------
151
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:16:06 +0000
152
+ ---------------------------------
153
+ PrototypicalTest: test_0001_truth
154
+ ---------------------------------
155
+ -------------------------------
156
+ RootTest: test_0001_should work
157
+ -------------------------------
158
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:16:49 +0000
159
+ Processing by StaticController#home as HTML
160
+ Rendered static/home.html.erb within layouts/application (0.7ms)
161
+ Completed 200 OK in 6ms (Views: 5.7ms)
162
+ --------------------------------------------------------------
163
+ RootTest: test_0002_should display a prototype if there is one
164
+ --------------------------------------------------------------
165
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:16:49 +0000
166
+ -------------------------------
167
+ RootTest: test_0001_should work
168
+ -------------------------------
169
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:17:46 +0000
170
+ Processing by StaticController#home as HTML
171
+ Rendered static/home.html.erb within layouts/application (0.6ms)
172
+ Completed 200 OK in 5ms (Views: 5.1ms)
173
+ --------------------------------------------------------------
174
+ RootTest: test_0002_should display a prototype if there is one
175
+ --------------------------------------------------------------
176
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:17:46 +0000
177
+ ---------------------------------
178
+ PrototypicalTest: test_0001_truth
179
+ ---------------------------------
180
+ ---------------------------------
181
+ PrototypicalTest: test_0001_truth
182
+ ---------------------------------
183
+ -------------------------------
184
+ RootTest: test_0001_should work
185
+ -------------------------------
186
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:18:06 +0000
187
+ --------------------------------------------------------------
188
+ RootTest: test_0002_should display a prototype if there is one
189
+ --------------------------------------------------------------
190
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:18:06 +0000
191
+ -------------------------------
192
+ RootTest: test_0001_should work
193
+ -------------------------------
194
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:18:25 +0000
195
+ Processing by StaticController#home as HTML
196
+ Rendered static/home.html.erb within layouts/application (0.7ms)
197
+ Completed 200 OK in 6ms (Views: 5.5ms)
198
+ --------------------------------------------------------------
199
+ RootTest: test_0002_should display a prototype if there is one
200
+ --------------------------------------------------------------
201
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:18:25 +0000
202
+ ---------------------------------
203
+ PrototypicalTest: test_0001_truth
204
+ ---------------------------------
205
+ --------------------------------------------------------------
206
+ RootTest: test_0002_should display a prototype if there is one
207
+ --------------------------------------------------------------
208
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:19:04 +0000
209
+ -------------------------------
210
+ RootTest: test_0001_should work
211
+ -------------------------------
212
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:19:04 +0000
213
+ ---------------------------------
214
+ PrototypicalTest: test_0001_truth
215
+ ---------------------------------
216
+ ---------------------------------
217
+ PrototypicalTest: test_0001_truth
218
+ ---------------------------------
219
+ --------------------------------------------------------------
220
+ RootTest: test_0002_should display a prototype if there is one
221
+ --------------------------------------------------------------
222
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:19:23 +0000
223
+ -------------------------------
224
+ RootTest: test_0001_should work
225
+ -------------------------------
226
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:19:23 +0000
227
+ -------------------------------
228
+ RootTest: test_0001_should work
229
+ -------------------------------
230
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:19:59 +0000
231
+ --------------------------------------------------------------
232
+ RootTest: test_0002_should display a prototype if there is one
233
+ --------------------------------------------------------------
234
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:19:59 +0000
235
+ ---------------------------------
236
+ PrototypicalTest: test_0001_truth
237
+ ---------------------------------
238
+ ---------------------------------
239
+ PrototypicalTest: test_0001_truth
240
+ ---------------------------------
241
+ -------------------------------
242
+ RootTest: test_0001_should work
243
+ -------------------------------
244
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:21:23 +0000
245
+ --------------------------------------------------------------
246
+ RootTest: test_0002_should display a prototype if there is one
247
+ --------------------------------------------------------------
248
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:21:49 +0000
249
+ ---------------------------------
250
+ PrototypicalTest: test_0001_truth
251
+ ---------------------------------
252
+ --------------------------------------------------------------
253
+ RootTest: test_0002_should display a prototype if there is one
254
+ --------------------------------------------------------------
255
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:21:52 +0000
256
+ -------------------------------
257
+ RootTest: test_0001_should work
258
+ -------------------------------
259
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:21:52 +0000
260
+ Processing by StaticController#home as HTML
261
+ Rendered static/home.html.erb within layouts/application (0.7ms)
262
+ Completed 200 OK in 6ms (Views: 5.7ms)
263
+ --------------------------------------------------------------
264
+ RootTest: test_0002_should display a prototype if there is one
265
+ --------------------------------------------------------------
266
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:22:24 +0000
267
+ -------------------------------
268
+ RootTest: test_0001_should work
269
+ -------------------------------
270
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:22:24 +0000
271
+ Processing by StaticController#home as HTML
272
+ Rendered static/home.html.erb within layouts/application (0.8ms)
273
+ Completed 200 OK in 7ms (Views: 6.4ms)
274
+ ---------------------------------
275
+ PrototypicalTest: test_0001_truth
276
+ ---------------------------------
277
+ -------------------------------
278
+ RootTest: test_0001_should work
279
+ -------------------------------
280
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:22:56 +0000
281
+ Processing by StaticController#home as HTML
282
+ Rendered static/home.html.erb within layouts/application (0.7ms)
283
+ Completed 200 OK in 6ms (Views: 6.2ms)
284
+ --------------------------------------------------------------
285
+ RootTest: test_0002_should display a prototype if there is one
286
+ --------------------------------------------------------------
287
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:22:56 +0000
288
+ Processing by StaticController#has_prototype as HTML
289
+ Completed 500 Internal Server Error in 2ms
290
+ ---------------------------------
291
+ PrototypicalTest: test_0001_truth
292
+ ---------------------------------
293
+ -------------------------------
294
+ RootTest: test_0001_should work
295
+ -------------------------------
296
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:23:50 +0000
297
+ --------------------------------------------------------------
298
+ RootTest: test_0002_should display a prototype if there is one
299
+ --------------------------------------------------------------
300
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:23:50 +0000
301
+ ---------------------------------
302
+ PrototypicalTest: test_0001_truth
303
+ ---------------------------------
304
+ -------------------------------
305
+ RootTest: test_0001_should work
306
+ -------------------------------
307
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:24:09 +0000
308
+ Processing by StaticController#home as HTML
309
+ Rendered static/home.html.erb within layouts/application (0.7ms)
310
+ Completed 200 OK in 6ms (Views: 6.1ms)
311
+ --------------------------------------------------------------
312
+ RootTest: test_0002_should display a prototype if there is one
313
+ --------------------------------------------------------------
314
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:24:09 +0000
315
+ Processing by StaticController#has_prototype as HTML
316
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.3ms)
317
+ Completed 200 OK in 1ms (Views: 1.3ms)
318
+ ---------------------------------
319
+ PrototypicalTest: test_0001_truth
320
+ ---------------------------------
321
+ -------------------------------
322
+ RootTest: test_0001_should work
323
+ -------------------------------
324
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:24:39 +0000
325
+ Processing by StaticController#home as HTML
326
+ Rendered static/home.html.erb within layouts/application (0.7ms)
327
+ Completed 200 OK in 7ms (Views: 6.4ms)
328
+ --------------------------------------------------------------
329
+ RootTest: test_0002_should display a prototype if there is one
330
+ --------------------------------------------------------------
331
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:24:39 +0000
332
+ Processing by StaticController#has_prototype as HTML
333
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.2ms)
334
+ Completed 200 OK in 1ms (Views: 1.1ms)
335
+ ---------------------------------
336
+ PrototypicalTest: test_0001_truth
337
+ ---------------------------------
338
+ ---------------------------------
339
+ PrototypicalTest: test_0001_truth
340
+ ---------------------------------
341
+ -------------------------------
342
+ RootTest: test_0001_should work
343
+ -------------------------------
344
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:38:25 +0000
345
+ Processing by StaticController#home as HTML
346
+ Rendered static/home.html.erb within layouts/application (0.7ms)
347
+ Completed 200 OK in 6ms (Views: 6.1ms)
348
+ --------------------------------------------------------------
349
+ RootTest: test_0002_should display a prototype if there is one
350
+ --------------------------------------------------------------
351
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:38:25 +0000
352
+ Processing by StaticController#has_prototype as HTML
353
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.2ms)
354
+ Completed 200 OK in 1ms (Views: 1.1ms)
355
+ ---------------------------------
356
+ PrototypicalTest: test_0001_truth
357
+ ---------------------------------
358
+ -------------------------------
359
+ RootTest: test_0001_should work
360
+ -------------------------------
361
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:38:32 +0000
362
+ Processing by StaticController#home as HTML
363
+ Rendered static/home.html.erb within layouts/application (0.7ms)
364
+ Completed 200 OK in 6ms (Views: 5.9ms)
365
+ --------------------------------------------------------------
366
+ RootTest: test_0002_should display a prototype if there is one
367
+ --------------------------------------------------------------
368
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:38:32 +0000
369
+ Processing by StaticController#has_prototype as HTML
370
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.2ms)
371
+ Completed 200 OK in 1ms (Views: 1.1ms)
372
+ -------------------------------
373
+ RootTest: test_0001_should work
374
+ -------------------------------
375
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:40:02 +0000
376
+ Processing by StaticController#home as HTML
377
+ Rendered static/home.html.erb within layouts/application (0.7ms)
378
+ Completed 200 OK in 6ms (Views: 6.0ms)
379
+ --------------------------------------------------------------
380
+ RootTest: test_0002_should display a prototype if there is one
381
+ --------------------------------------------------------------
382
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:40:02 +0000
383
+ Processing by StaticController#has_prototype as HTML
384
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.2ms)
385
+ Completed 200 OK in 1ms (Views: 1.2ms)
386
+ ---------------------------------
387
+ PrototypicalTest: test_0001_truth
388
+ ---------------------------------
389
+ --------------------------------------------------------------
390
+ RootTest: test_0002_should display a prototype if there is one
391
+ --------------------------------------------------------------
392
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:40:48 +0000
393
+ Processing by StaticController#has_prototype as HTML
394
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.7ms)
395
+ Completed 200 OK in 6ms (Views: 6.1ms)
396
+ -------------------------------
397
+ RootTest: test_0001_should work
398
+ -------------------------------
399
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:40:48 +0000
400
+ Processing by StaticController#home as HTML
401
+ Rendered static/home.html.erb within layouts/application (0.2ms)
402
+ Completed 200 OK in 1ms (Views: 0.9ms)
403
+ ---------------------------------
404
+ PrototypicalTest: test_0001_truth
405
+ ---------------------------------
406
+ -------------------------------
407
+ RootTest: test_0001_should work
408
+ -------------------------------
409
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:53:56 +0000
410
+ Processing by StaticController#home as HTML
411
+ Rendered static/home.html.erb within layouts/application (0.7ms)
412
+ Completed 200 OK in 6ms (Views: 6.1ms)
413
+ --------------------------------------------------------------
414
+ RootTest: test_0002_should display a prototype if there is one
415
+ --------------------------------------------------------------
416
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:53:56 +0000
417
+ Processing by StaticController#has_prototype as HTML
418
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.2ms)
419
+ Completed 200 OK in 1ms (Views: 1.2ms)
420
+ ---------------------------------
421
+ PrototypicalTest: test_0001_truth
422
+ ---------------------------------
423
+ ---------------------------------
424
+ PrototypicalTest: test_0001_truth
425
+ ---------------------------------
426
+ -------------------------------
427
+ RootTest: test_0001_should work
428
+ -------------------------------
429
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:55:25 +0000
430
+ Processing by StaticController#home as HTML
431
+ Rendered static/home.html.erb within layouts/application (0.7ms)
432
+ Completed 200 OK in 6ms (Views: 6.2ms)
433
+ --------------------------------------------------------------
434
+ RootTest: test_0002_should display a prototype if there is one
435
+ --------------------------------------------------------------
436
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:55:25 +0000
437
+ Processing by StaticController#has_prototype as HTML
438
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.2ms)
439
+ Completed 200 OK in 1ms (Views: 1.2ms)
440
+ -------------------------------
441
+ RootTest: test_0001_should work
442
+ -------------------------------
443
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:55:55 +0000
444
+ Processing by StaticController#home as HTML
445
+ Rendered static/home.html.erb within layouts/application (0.7ms)
446
+ Completed 200 OK in 6ms (Views: 5.6ms)
447
+ --------------------------------------------------------------
448
+ RootTest: test_0002_should display a prototype if there is one
449
+ --------------------------------------------------------------
450
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:55:55 +0000
451
+ Processing by StaticController#has_prototype as HTML
452
+ Completed 500 Internal Server Error in 2ms
453
+ ---------------------------------
454
+ PrototypicalTest: test_0001_truth
455
+ ---------------------------------
456
+ ---------------------------------
457
+ PrototypicalTest: test_0001_truth
458
+ ---------------------------------
459
+ -------------------------------
460
+ RootTest: test_0001_should work
461
+ -------------------------------
462
+ Started GET "/" for 127.0.0.1 at 2015-12-07 23:56:11 +0000
463
+ Processing by StaticController#home as HTML
464
+ Rendered static/home.html.erb within layouts/application (0.7ms)
465
+ Completed 200 OK in 6ms (Views: 5.6ms)
466
+ --------------------------------------------------------------
467
+ RootTest: test_0002_should display a prototype if there is one
468
+ --------------------------------------------------------------
469
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-07 23:56:11 +0000
470
+ Processing by StaticController#has_prototype as HTML
471
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.2ms)
472
+ Completed 200 OK in 1ms (Views: 1.1ms)
473
+ ---------------------------------
474
+ PrototypicalTest: test_0001_truth
475
+ ---------------------------------
476
+ ------------------------------------------------------------------------------
477
+ Prototypical::ControllerTest: test_0001_should append the protypical view path
478
+ ------------------------------------------------------------------------------
479
+ -------------------------------
480
+ RootTest: test_0001_should work
481
+ -------------------------------
482
+ Started GET "/" for 127.0.0.1 at 2015-12-08 00:03:40 +0000
483
+ Processing by StaticController#home as HTML
484
+ Rendered static/home.html.erb within layouts/application (0.7ms)
485
+ Completed 200 OK in 6ms (Views: 5.7ms)
486
+ --------------------------------------------------------------
487
+ RootTest: test_0002_should display a prototype if there is one
488
+ --------------------------------------------------------------
489
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-08 00:03:40 +0000
490
+ Processing by StaticController#has_prototype as HTML
491
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.2ms)
492
+ Completed 200 OK in 1ms (Views: 1.1ms)
493
+ ---------------------------------
494
+ PrototypicalTest: test_0001_truth
495
+ ---------------------------------
496
+ -------------------------------
497
+ RootTest: test_0001_should work
498
+ -------------------------------
499
+ Started GET "/" for 127.0.0.1 at 2015-12-08 00:04:30 +0000
500
+ Processing by StaticController#home as HTML
501
+ Rendered static/home.html.erb within layouts/application (0.7ms)
502
+ Completed 200 OK in 6ms (Views: 6.1ms)
503
+ --------------------------------------------------------------
504
+ RootTest: test_0002_should display a prototype if there is one
505
+ --------------------------------------------------------------
506
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-08 00:04:30 +0000
507
+ Processing by StaticController#has_prototype as HTML
508
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.2ms)
509
+ Completed 200 OK in 1ms (Views: 1.1ms)
510
+ ------------------------------------------------------------------------------
511
+ Prototypical::ControllerTest: test_0001_should append the protypical view path
512
+ ------------------------------------------------------------------------------
513
+ ------------------------------------------------------------------------------
514
+ Prototypical::ControllerTest: test_0001_should append the protypical view path
515
+ ------------------------------------------------------------------------------
516
+ ---------------------------------
517
+ PrototypicalTest: test_0001_truth
518
+ ---------------------------------
519
+ -------------------------------
520
+ RootTest: test_0001_should work
521
+ -------------------------------
522
+ Started GET "/" for 127.0.0.1 at 2015-12-08 00:04:48 +0000
523
+ Processing by StaticController#home as HTML
524
+ Rendered static/home.html.erb within layouts/application (0.7ms)
525
+ Completed 200 OK in 6ms (Views: 5.8ms)
526
+ --------------------------------------------------------------
527
+ RootTest: test_0002_should display a prototype if there is one
528
+ --------------------------------------------------------------
529
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-08 00:04:48 +0000
530
+ Processing by StaticController#has_prototype as HTML
531
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.2ms)
532
+ Completed 200 OK in 1ms (Views: 1.1ms)
533
+ ------------------------------------------------------------------------------
534
+ Prototypical::ControllerTest: test_0001_should append the protypical view path
535
+ ------------------------------------------------------------------------------
536
+ ---------------------------------
537
+ PrototypicalTest: test_0001_truth
538
+ ---------------------------------
539
+ --------------------------------------------------------------
540
+ RootTest: test_0002_should display a prototype if there is one
541
+ --------------------------------------------------------------
542
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-08 00:05:04 +0000
543
+ Processing by StaticController#has_prototype as HTML
544
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.7ms)
545
+ Completed 200 OK in 6ms (Views: 6.3ms)
546
+ -------------------------------
547
+ RootTest: test_0001_should work
548
+ -------------------------------
549
+ Started GET "/" for 127.0.0.1 at 2015-12-08 00:05:04 +0000
550
+ Processing by StaticController#home as HTML
551
+ Rendered static/home.html.erb within layouts/application (0.2ms)
552
+ Completed 200 OK in 1ms (Views: 0.9ms)
553
+ ------------------------------------------------------------------------------
554
+ Prototypical::ControllerTest: test_0001_should append the protypical view path
555
+ ------------------------------------------------------------------------------
556
+ ---------------------------------
557
+ PrototypicalTest: test_0001_truth
558
+ ---------------------------------
559
+ --------------------------------------------------------------
560
+ RootTest: test_0002_should display a prototype if there is one
561
+ --------------------------------------------------------------
562
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-08 00:05:54 +0000
563
+ Processing by StaticController#has_prototype as HTML
564
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.7ms)
565
+ Completed 200 OK in 6ms (Views: 6.3ms)
566
+ -------------------------------
567
+ RootTest: test_0001_should work
568
+ -------------------------------
569
+ Started GET "/" for 127.0.0.1 at 2015-12-08 00:05:54 +0000
570
+ Processing by StaticController#home as HTML
571
+ Rendered static/home.html.erb within layouts/application (0.2ms)
572
+ Completed 200 OK in 1ms (Views: 1.0ms)
573
+ ---------------------------------
574
+ PrototypicalTest: test_0001_truth
575
+ ---------------------------------
576
+ -------------------------------
577
+ RootTest: test_0001_should work
578
+ -------------------------------
579
+ Started GET "/" for 127.0.0.1 at 2015-12-08 22:30:09 +0000
580
+ Processing by StaticController#home as HTML
581
+ Rendered static/home.html.erb within layouts/application (0.9ms)
582
+ Completed 200 OK in 8ms (Views: 7.6ms)
583
+ --------------------------------------------------------------
584
+ RootTest: test_0002_should display a prototype if there is one
585
+ --------------------------------------------------------------
586
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-08 22:30:09 +0000
587
+ Processing by StaticController#has_prototype as HTML
588
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.2ms)
589
+ Completed 200 OK in 1ms (Views: 1.3ms)
590
+ ------------------------------------------------------------------------------
591
+ Prototypical::ControllerTest: test_0001_should append the protypical view path
592
+ ------------------------------------------------------------------------------
593
+ --------------------------------------------------------------
594
+ RootTest: test_0002_should display a prototype if there is one
595
+ --------------------------------------------------------------
596
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-08 22:30:28 +0000
597
+ Processing by StaticController#has_prototype as HTML
598
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.7ms)
599
+ Completed 200 OK in 6ms (Views: 5.9ms)
600
+ -------------------------------
601
+ RootTest: test_0001_should work
602
+ -------------------------------
603
+ Started GET "/" for 127.0.0.1 at 2015-12-08 22:30:28 +0000
604
+ Processing by StaticController#home as HTML
605
+ Rendered static/home.html.erb within layouts/application (0.2ms)
606
+ Completed 200 OK in 1ms (Views: 1.1ms)
607
+ ---------------------------------
608
+ PrototypicalTest: test_0001_truth
609
+ ---------------------------------
610
+ ------------------------------------------------------------------------------
611
+ Prototypical::ControllerTest: test_0001_should append the protypical view path
612
+ ------------------------------------------------------------------------------
613
+ ---------------------------------
614
+ PrototypicalTest: test_0001_truth
615
+ ---------------------------------
616
+ ------------------------------------------------------------------------------
617
+ Prototypical::ControllerTest: test_0001_should append the protypical view path
618
+ ------------------------------------------------------------------------------
619
+ -------------------------------
620
+ RootTest: test_0001_should work
621
+ -------------------------------
622
+ Started GET "/" for 127.0.0.1 at 2015-12-08 22:31:05 +0000
623
+ Processing by StaticController#home as HTML
624
+ Rendered static/home.html.erb within layouts/application (0.7ms)
625
+ Completed 200 OK in 6ms (Views: 5.9ms)
626
+ --------------------------------------------------------------
627
+ RootTest: test_0002_should display a prototype if there is one
628
+ --------------------------------------------------------------
629
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-08 22:31:05 +0000
630
+ Processing by StaticController#has_prototype as HTML
631
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.2ms)
632
+ Completed 200 OK in 1ms (Views: 1.3ms)
633
+ ---------------------------------
634
+ PrototypicalTest: test_0001_truth
635
+ ---------------------------------
636
+ -------------------------------
637
+ RootTest: test_0001_should work
638
+ -------------------------------
639
+ Started GET "/" for 127.0.0.1 at 2015-12-08 22:36:05 +0000
640
+ Processing by StaticController#home as HTML
641
+ Rendered static/home.html.erb within layouts/application (1.1ms)
642
+ Completed 200 OK in 8ms (Views: 7.5ms)
643
+ --------------------------------------------------------------
644
+ RootTest: test_0002_should display a prototype if there is one
645
+ --------------------------------------------------------------
646
+ Started GET "/has_prototype" for 127.0.0.1 at 2015-12-08 22:36:05 +0000
647
+ Processing by StaticController#has_prototype as HTML
648
+ Rendered app/prototypes/static/has_prototype.html.erb within layouts/application (0.2ms)
649
+ Completed 200 OK in 1ms (Views: 1.3ms)
650
+ --------------------------------------------------------------------------------------------------------------
651
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
652
+ --------------------------------------------------------------------------------------------------------------
653
+ --------------------------------------------------------------------------------------------------------------
654
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
655
+ --------------------------------------------------------------------------------------------------------------
656
+ -------------------------------
657
+ RootTest: test_0001_should work
658
+ -------------------------------
659
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:09:09 +0000
660
+ Processing by StaticController#home as HTML
661
+ Rendered static/home.html.erb within layouts/application (0.7ms)
662
+ Completed 200 OK in 6ms (Views: 6.0ms)
663
+ -----------------------------------------------------------------------------------------
664
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
665
+ -----------------------------------------------------------------------------------------
666
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:09:09 +0000
667
+ -----------------------------------------------------------------------------
668
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
669
+ -----------------------------------------------------------------------------
670
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:09:09 +0000
671
+ ---------------------------------
672
+ PrototypicalTest: test_0001_truth
673
+ ---------------------------------
674
+ -------------------------------
675
+ RootTest: test_0001_should work
676
+ -------------------------------
677
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:09:49 +0000
678
+ Processing by StaticController#home as HTML
679
+ Rendered static/home.html.erb within layouts/application (0.7ms)
680
+ Completed 200 OK in 6ms (Views: 5.9ms)
681
+ -----------------------------------------------------------------------------
682
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
683
+ -----------------------------------------------------------------------------
684
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:09:49 +0000
685
+ Processing by StaticController#disabled_prototype as HTML
686
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.2ms)
687
+ Completed 200 OK in 1ms (Views: 1.0ms)
688
+ -----------------------------------------------------------------------------------------
689
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
690
+ -----------------------------------------------------------------------------------------
691
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:09:49 +0000
692
+ Processing by StaticController#enabled_prototype as HTML
693
+ Rendered static/enabled_prototype.html.erb within layouts/application (0.2ms)
694
+ Completed 200 OK in 1ms (Views: 1.1ms)
695
+ ---------------------------------
696
+ PrototypicalTest: test_0001_truth
697
+ ---------------------------------
698
+ --------------------------------------------------------------------------------------------------------------
699
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
700
+ --------------------------------------------------------------------------------------------------------------
701
+ ---------------------------------
702
+ PrototypicalTest: test_0001_truth
703
+ ---------------------------------
704
+ -----------------------------------------------------------------------------
705
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
706
+ -----------------------------------------------------------------------------
707
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:10:04 +0000
708
+ Processing by StaticController#disabled_prototype as HTML
709
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.7ms)
710
+ Completed 200 OK in 6ms (Views: 6.1ms)
711
+ -----------------------------------------------------------------------------------------
712
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
713
+ -----------------------------------------------------------------------------------------
714
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:10:05 +0000
715
+ Processing by StaticController#enabled_prototype as HTML
716
+ Rendered static/enabled_prototype.html.erb within layouts/application (0.2ms)
717
+ Completed 200 OK in 1ms (Views: 1.0ms)
718
+ -------------------------------
719
+ RootTest: test_0001_should work
720
+ -------------------------------
721
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:10:05 +0000
722
+ Processing by StaticController#home as HTML
723
+ Rendered static/home.html.erb within layouts/application (0.2ms)
724
+ Completed 200 OK in 1ms (Views: 1.2ms)
725
+ --------------------------------------------------------------------------------------------------------------
726
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
727
+ --------------------------------------------------------------------------------------------------------------
728
+ --------------------------------------------------------------------------------------------------------------
729
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
730
+ --------------------------------------------------------------------------------------------------------------
731
+ ---------------------------------
732
+ PrototypicalTest: test_0001_truth
733
+ ---------------------------------
734
+ -------------------------------
735
+ RootTest: test_0001_should work
736
+ -------------------------------
737
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:10:40 +0000
738
+ Processing by StaticController#home as HTML
739
+ Rendered static/home.html.erb within layouts/application (0.7ms)
740
+ Completed 200 OK in 6ms (Views: 5.7ms)
741
+ -----------------------------------------------------------------------------------------
742
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
743
+ -----------------------------------------------------------------------------------------
744
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:10:40 +0000
745
+ Processing by StaticController#enabled_prototype as HTML
746
+ Rendered static/enabled_prototype.html.erb within layouts/application (0.2ms)
747
+ Completed 200 OK in 1ms (Views: 1.1ms)
748
+ -----------------------------------------------------------------------------
749
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
750
+ -----------------------------------------------------------------------------
751
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:10:40 +0000
752
+ Processing by StaticController#disabled_prototype as HTML
753
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.2ms)
754
+ Completed 200 OK in 1ms (Views: 1.1ms)
755
+ ---------------------------------
756
+ PrototypicalTest: test_0001_truth
757
+ ---------------------------------
758
+ --------------------------------------------------------------------------------------------------------------
759
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
760
+ --------------------------------------------------------------------------------------------------------------
761
+ -----------------------------------------------------------------------------
762
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
763
+ -----------------------------------------------------------------------------
764
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:11:03 +0000
765
+ Processing by StaticController#disabled_prototype as HTML
766
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.7ms)
767
+ Completed 200 OK in 6ms (Views: 5.7ms)
768
+ -----------------------------------------------------------------------------------------
769
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
770
+ -----------------------------------------------------------------------------------------
771
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:11:03 +0000
772
+ Processing by StaticController#enabled_prototype as HTML
773
+ Rendered static/enabled_prototype.html.erb within layouts/application (0.2ms)
774
+ Completed 200 OK in 1ms (Views: 1.0ms)
775
+ -------------------------------
776
+ RootTest: test_0001_should work
777
+ -------------------------------
778
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:11:03 +0000
779
+ Processing by StaticController#home as HTML
780
+ Rendered static/home.html.erb within layouts/application (0.2ms)
781
+ Completed 200 OK in 1ms (Views: 1.1ms)
782
+ -----------------------------------------------------------------------------------------
783
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
784
+ -----------------------------------------------------------------------------------------
785
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:13:19 +0000
786
+ -------------------------------
787
+ RootTest: test_0001_should work
788
+ -------------------------------
789
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:13:19 +0000
790
+ -----------------------------------------------------------------------------
791
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
792
+ -----------------------------------------------------------------------------
793
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:13:19 +0000
794
+ --------------------------------------------------------------------------------------------------------------
795
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
796
+ --------------------------------------------------------------------------------------------------------------
797
+ ---------------------------------
798
+ PrototypicalTest: test_0001_truth
799
+ ---------------------------------
800
+ -----------------------------------------------------------------------------
801
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
802
+ -----------------------------------------------------------------------------
803
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:13:28 +0000
804
+ Processing by StaticController#disabled_prototype as HTML
805
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.7ms)
806
+ Completed 200 OK in 8ms (Views: 7.9ms)
807
+ -----------------------------------------------------------------------------------------
808
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
809
+ -----------------------------------------------------------------------------------------
810
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:13:28 +0000
811
+ Processing by StaticController#enabled_prototype as HTML
812
+ Completed 500 Internal Server Error in 2ms
813
+ -------------------------------
814
+ RootTest: test_0001_should work
815
+ -------------------------------
816
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:13:28 +0000
817
+ Processing by StaticController#home as HTML
818
+ Rendered static/home.html.erb within layouts/application (0.2ms)
819
+ Completed 200 OK in 1ms (Views: 1.1ms)
820
+ ---------------------------------
821
+ PrototypicalTest: test_0001_truth
822
+ ---------------------------------
823
+ --------------------------------------------------------------------------------------------------------------
824
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
825
+ --------------------------------------------------------------------------------------------------------------
826
+ -------------------------------
827
+ RootTest: test_0001_should work
828
+ -------------------------------
829
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:14:14 +0000
830
+ Processing by StaticController#home as HTML
831
+ Rendered static/home.html.erb within layouts/application (0.7ms)
832
+ Completed 200 OK in 6ms (Views: 6.2ms)
833
+ -----------------------------------------------------------------------------
834
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
835
+ -----------------------------------------------------------------------------
836
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:14:14 +0000
837
+ Processing by StaticController#disabled_prototype as HTML
838
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.2ms)
839
+ Completed 200 OK in 1ms (Views: 1.1ms)
840
+ -----------------------------------------------------------------------------------------
841
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
842
+ -----------------------------------------------------------------------------------------
843
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:14:14 +0000
844
+ Processing by StaticController#enabled_prototype as HTML
845
+ Rendered static/enabled_prototype.html.erb within layouts/application (0.2ms)
846
+ Completed 200 OK in 1ms (Views: 1.2ms)
847
+ ---------------------------------
848
+ PrototypicalTest: test_0001_truth
849
+ ---------------------------------
850
+ --------------------------------------------------------------------------------------------------------------
851
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
852
+ --------------------------------------------------------------------------------------------------------------
853
+ --------------------------------------------------------------------------------------------------------------
854
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
855
+ --------------------------------------------------------------------------------------------------------------
856
+ ---------------------------------
857
+ PrototypicalTest: test_0001_truth
858
+ ---------------------------------
859
+ -----------------------------------------------------------------------------------------
860
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
861
+ -----------------------------------------------------------------------------------------
862
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:16:00 +0000
863
+ Processing by StaticController#enabled_prototype as HTML
864
+ Rendered static/enabled_prototype.html.erb within layouts/application (0.7ms)
865
+ Completed 200 OK in 6ms (Views: 5.7ms)
866
+ -----------------------------------------------------------------------------
867
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
868
+ -----------------------------------------------------------------------------
869
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:16:00 +0000
870
+ Processing by StaticController#disabled_prototype as HTML
871
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.2ms)
872
+ Completed 200 OK in 1ms (Views: 1.1ms)
873
+ -------------------------------
874
+ RootTest: test_0001_should work
875
+ -------------------------------
876
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:16:00 +0000
877
+ Processing by StaticController#home as HTML
878
+ Rendered static/home.html.erb within layouts/application (0.3ms)
879
+ Completed 200 OK in 1ms (Views: 1.1ms)
880
+ ---------------------------------
881
+ PrototypicalTest: test_0001_truth
882
+ ---------------------------------
883
+ --------------------------------------------------------------------------------------------------------------
884
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
885
+ --------------------------------------------------------------------------------------------------------------
886
+ -------------------------------
887
+ RootTest: test_0001_should work
888
+ -------------------------------
889
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:16:20 +0000
890
+ Processing by StaticController#home as HTML
891
+ Completed 500 Internal Server Error in 0ms
892
+ -----------------------------------------------------------------------------------------
893
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
894
+ -----------------------------------------------------------------------------------------
895
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:16:20 +0000
896
+ Processing by StaticController#enabled_prototype as HTML
897
+ Completed 500 Internal Server Error in 0ms
898
+ -----------------------------------------------------------------------------
899
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
900
+ -----------------------------------------------------------------------------
901
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:16:20 +0000
902
+ Processing by StaticController#disabled_prototype as HTML
903
+ Completed 500 Internal Server Error in 0ms
904
+ --------------------------------------------------------------------------------------------------------------
905
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
906
+ --------------------------------------------------------------------------------------------------------------
907
+ -----------------------------------------------------------------------------------------
908
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
909
+ -----------------------------------------------------------------------------------------
910
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:16:43 +0000
911
+ Processing by StaticController#enabled_prototype as HTML
912
+ Rendered static/enabled_prototype.html.erb within layouts/application (0.8ms)
913
+ Completed 200 OK in 7ms (Views: 7.0ms)
914
+ -------------------------------
915
+ RootTest: test_0001_should work
916
+ -------------------------------
917
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:16:43 +0000
918
+ Processing by StaticController#home as HTML
919
+ Rendered static/home.html.erb within layouts/application (0.2ms)
920
+ Completed 200 OK in 1ms (Views: 1.1ms)
921
+ -----------------------------------------------------------------------------
922
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
923
+ -----------------------------------------------------------------------------
924
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:16:43 +0000
925
+ Processing by StaticController#disabled_prototype as HTML
926
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.3ms)
927
+ Completed 200 OK in 1ms (Views: 1.2ms)
928
+ ---------------------------------
929
+ PrototypicalTest: test_0001_truth
930
+ ---------------------------------
931
+ ---------------------------------
932
+ PrototypicalTest: test_0001_truth
933
+ ---------------------------------
934
+ --------------------------------------------------------------------------------------------------------------
935
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
936
+ --------------------------------------------------------------------------------------------------------------
937
+ -------------------------------
938
+ RootTest: test_0001_should work
939
+ -------------------------------
940
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:19:05 +0000
941
+ Processing by StaticController#home as HTML
942
+ Completed 500 Internal Server Error in 0ms
943
+ -----------------------------------------------------------------------------
944
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
945
+ -----------------------------------------------------------------------------
946
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:19:05 +0000
947
+ Processing by StaticController#disabled_prototype as HTML
948
+ Completed 500 Internal Server Error in 0ms
949
+ -----------------------------------------------------------------------------------------
950
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
951
+ -----------------------------------------------------------------------------------------
952
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:19:05 +0000
953
+ Processing by StaticController#enabled_prototype as HTML
954
+ Completed 500 Internal Server Error in 0ms
955
+ -------------------------------
956
+ RootTest: test_0001_should work
957
+ -------------------------------
958
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:19:21 +0000
959
+ Processing by StaticController#home as HTML
960
+ Completed 500 Internal Server Error in 0ms
961
+ -----------------------------------------------------------------------------------------
962
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
963
+ -----------------------------------------------------------------------------------------
964
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:19:21 +0000
965
+ Processing by StaticController#enabled_prototype as HTML
966
+ Completed 500 Internal Server Error in 0ms
967
+ -----------------------------------------------------------------------------
968
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
969
+ -----------------------------------------------------------------------------
970
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:19:21 +0000
971
+ Processing by StaticController#disabled_prototype as HTML
972
+ Completed 500 Internal Server Error in 0ms
973
+ ---------------------------------
974
+ PrototypicalTest: test_0001_truth
975
+ ---------------------------------
976
+ --------------------------------------------------------------------------------------------------------------
977
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
978
+ --------------------------------------------------------------------------------------------------------------
979
+ ---------------------------------
980
+ PrototypicalTest: test_0001_truth
981
+ ---------------------------------
982
+ -----------------------------------------------------------------------------
983
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
984
+ -----------------------------------------------------------------------------
985
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:19:30 +0000
986
+ Processing by StaticController#disabled_prototype as HTML
987
+ Completed 500 Internal Server Error in 1ms
988
+ -----------------------------------------------------------------------------------------
989
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
990
+ -----------------------------------------------------------------------------------------
991
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:19:30 +0000
992
+ Processing by StaticController#enabled_prototype as HTML
993
+ Completed 500 Internal Server Error in 1ms
994
+ -------------------------------
995
+ RootTest: test_0001_should work
996
+ -------------------------------
997
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:19:30 +0000
998
+ Processing by StaticController#home as HTML
999
+ Completed 500 Internal Server Error in 1ms
1000
+ --------------------------------------------------------------------------------------------------------------
1001
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
1002
+ --------------------------------------------------------------------------------------------------------------
1003
+ --------------------------------------------------------------------------------------------------------------
1004
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
1005
+ --------------------------------------------------------------------------------------------------------------
1006
+ -----------------------------------------------------------------------------
1007
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1008
+ -----------------------------------------------------------------------------
1009
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:19:40 +0000
1010
+ Processing by StaticController#disabled_prototype as HTML
1011
+ Completed 500 Internal Server Error in 1ms
1012
+ -----------------------------------------------------------------------------------------
1013
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1014
+ -----------------------------------------------------------------------------------------
1015
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:19:40 +0000
1016
+ Processing by StaticController#enabled_prototype as HTML
1017
+ Completed 500 Internal Server Error in 1ms
1018
+ -------------------------------
1019
+ RootTest: test_0001_should work
1020
+ -------------------------------
1021
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:19:40 +0000
1022
+ Processing by StaticController#home as HTML
1023
+ Completed 500 Internal Server Error in 1ms
1024
+ ---------------------------------
1025
+ PrototypicalTest: test_0001_truth
1026
+ ---------------------------------
1027
+ --------------------------------------------------------------------------------------------------------------
1028
+ Prototypical::ControllerTest::#append_prototypical_view_path: test_0001_should append the protypical view path
1029
+ --------------------------------------------------------------------------------------------------------------
1030
+ ---------------------------------
1031
+ PrototypicalTest: test_0001_truth
1032
+ ---------------------------------
1033
+ -------------------------------
1034
+ RootTest: test_0001_should work
1035
+ -------------------------------
1036
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:21:23 +0000
1037
+ Processing by StaticController#home as HTML
1038
+ Rendered static/home.html.erb within layouts/application (0.8ms)
1039
+ Completed 200 OK in 94704ms (Views: 7.4ms)
1040
+ -----------------------------------------------------------------------------------------
1041
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1042
+ -----------------------------------------------------------------------------------------
1043
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:22:57 +0000
1044
+ Processing by StaticController#enabled_prototype as HTML
1045
+ Rendered static/enabled_prototype.html.erb within layouts/application (0.3ms)
1046
+ Completed 200 OK in 981ms (Views: 1.4ms)
1047
+ -----------------------------------------------------------------------------
1048
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1049
+ -----------------------------------------------------------------------------
1050
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:22:58 +0000
1051
+ Processing by StaticController#disabled_prototype as HTML
1052
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.3ms)
1053
+ Completed 200 OK in 711ms (Views: 1.3ms)
1054
+ ---------------------------------
1055
+ PrototypicalTest: test_0001_truth
1056
+ ---------------------------------
1057
+ -----------------------------------------------------------------------------
1058
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1059
+ -----------------------------------------------------------------------------
1060
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:23:36 +0000
1061
+ Processing by StaticController#disabled_prototype as HTML
1062
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.7ms)
1063
+ Completed 200 OK in 6ms (Views: 5.7ms)
1064
+ -----------------------------------------------------------------------------------------
1065
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1066
+ -----------------------------------------------------------------------------------------
1067
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:23:36 +0000
1068
+ Processing by StaticController#enabled_prototype as HTML
1069
+ Rendered static/enabled_prototype.html.erb within layouts/application (0.2ms)
1070
+ Completed 200 OK in 1ms (Views: 1.1ms)
1071
+ -------------------------------
1072
+ RootTest: test_0001_should work
1073
+ -------------------------------
1074
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:23:36 +0000
1075
+ Processing by StaticController#home as HTML
1076
+ Rendered static/home.html.erb within layouts/application (0.2ms)
1077
+ Completed 200 OK in 1ms (Views: 1.1ms)
1078
+ ---------------------------------------------------------------------------------------------------
1079
+ Prototypical::ControllerTest::#enable_prototyping: test_0001_should append the protypical view path
1080
+ ---------------------------------------------------------------------------------------------------
1081
+ -----------------------------------------------------------------------------------------
1082
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1083
+ -----------------------------------------------------------------------------------------
1084
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:24:06 +0000
1085
+ Processing by StaticController#enabled_prototype as HTML
1086
+ Rendered static/enabled_prototype.html.erb within layouts/application (1.0ms)
1087
+ Completed 200 OK in 47742ms (Views: 7.9ms)
1088
+ -------------------------------
1089
+ RootTest: test_0001_should work
1090
+ -------------------------------
1091
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:24:54 +0000
1092
+ Processing by StaticController#home as HTML
1093
+ Rendered static/home.html.erb within layouts/application (0.2ms)
1094
+ Completed 200 OK in 2ms (Views: 1.2ms)
1095
+ -----------------------------------------------------------------------------
1096
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1097
+ -----------------------------------------------------------------------------
1098
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:24:54 +0000
1099
+ Processing by StaticController#disabled_prototype as HTML
1100
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.3ms)
1101
+ Completed 200 OK in 1ms (Views: 1.2ms)
1102
+ ---------------------------------
1103
+ PrototypicalTest: test_0001_truth
1104
+ ---------------------------------
1105
+ ---------------------------------------------------------------------------------------------------
1106
+ Prototypical::ControllerTest::#enable_prototyping: test_0001_should append the protypical view path
1107
+ ---------------------------------------------------------------------------------------------------
1108
+ -------------------------------
1109
+ RootTest: test_0001_should work
1110
+ -------------------------------
1111
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:24:56 +0000
1112
+ Processing by StaticController#home as HTML
1113
+ Rendered static/home.html.erb within layouts/application (0.7ms)
1114
+ Completed 200 OK in 8ms (Views: 7.5ms)
1115
+ -----------------------------------------------------------------------------
1116
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1117
+ -----------------------------------------------------------------------------
1118
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:24:56 +0000
1119
+ Processing by StaticController#disabled_prototype as HTML
1120
+ Rendered app/prototypes/static/disabled_prototype.html.erb within layouts/application (0.2ms)
1121
+ Completed 200 OK in 1ms (Views: 1.3ms)
1122
+ -----------------------------------------------------------------------------------------
1123
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1124
+ -----------------------------------------------------------------------------------------
1125
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:24:56 +0000
1126
+ Processing by StaticController#enabled_prototype as HTML
1127
+ Rendered app/prototypes/static/enabled_prototype.html.erb within layouts/application (0.2ms)
1128
+ Completed 200 OK in 1ms (Views: 1.3ms)
1129
+ ---------------------------------------------------------------------------------------------------
1130
+ Prototypical::ControllerTest::#enable_prototyping: test_0001_should append the protypical view path
1131
+ ---------------------------------------------------------------------------------------------------
1132
+ ---------------------------------
1133
+ PrototypicalTest: test_0001_truth
1134
+ ---------------------------------
1135
+ -----------------------------------------------------------------------------------------
1136
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1137
+ -----------------------------------------------------------------------------------------
1138
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:25:17 +0000
1139
+ Processing by StaticController#enabled_prototype as HTML
1140
+ Rendered app/prototypes/static/enabled_prototype.html.erb within layouts/application (0.7ms)
1141
+ Completed 200 OK in 6ms (Views: 5.9ms)
1142
+ -------------------------------
1143
+ RootTest: test_0001_should work
1144
+ -------------------------------
1145
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:25:17 +0000
1146
+ Processing by StaticController#home as HTML
1147
+ Rendered static/home.html.erb within layouts/application (0.2ms)
1148
+ Completed 200 OK in 1ms (Views: 1.0ms)
1149
+ -----------------------------------------------------------------------------
1150
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1151
+ -----------------------------------------------------------------------------
1152
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:25:17 +0000
1153
+ Processing by StaticController#disabled_prototype as HTML
1154
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.2ms)
1155
+ Completed 200 OK in 1ms (Views: 0.9ms)
1156
+ ---------------------------------------------------------------------------------------------------
1157
+ Prototypical::ControllerTest::#enable_prototyping: test_0001_should append the protypical view path
1158
+ ---------------------------------------------------------------------------------------------------
1159
+ ---------------------------------
1160
+ PrototypicalTest: test_0001_truth
1161
+ ---------------------------------
1162
+ -----------------------------------------------------------------------------------------------------------------------------------------
1163
+ Prototypical::ControllerTest::including::when Prototypical.enabled_on_include? is true: test_0001_should automatically enable prototyping
1164
+ -----------------------------------------------------------------------------------------------------------------------------------------
1165
+ ---------------------------------
1166
+ PrototypicalTest: test_0001_truth
1167
+ ---------------------------------
1168
+ ---------------------------------------------------------------------------------------------------
1169
+ Prototypical::ControllerTest::#enable_prototyping: test_0001_should append the protypical view path
1170
+ ---------------------------------------------------------------------------------------------------
1171
+ -------------------------------
1172
+ RootTest: test_0001_should work
1173
+ -------------------------------
1174
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:41:43 +0000
1175
+ Processing by StaticController#home as HTML
1176
+ Rendered static/home.html.erb within layouts/application (0.7ms)
1177
+ Completed 200 OK in 6ms (Views: 5.5ms)
1178
+ -----------------------------------------------------------------------------------------
1179
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1180
+ -----------------------------------------------------------------------------------------
1181
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:41:43 +0000
1182
+ Processing by StaticController#enabled_prototype as HTML
1183
+ Rendered app/prototypes/static/enabled_prototype.html.erb within layouts/application (0.2ms)
1184
+ Completed 200 OK in 1ms (Views: 1.3ms)
1185
+ -----------------------------------------------------------------------------
1186
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1187
+ -----------------------------------------------------------------------------
1188
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:41:43 +0000
1189
+ Processing by StaticController#disabled_prototype as HTML
1190
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.2ms)
1191
+ Completed 200 OK in 1ms (Views: 1.0ms)
1192
+ --------------------------------------------------------------------------------------------------------------------------------------------
1193
+ Prototypical::ControllerTest::including::when Prototypical.enable_on_include is false: test_0001_should not automatically enable prototyping
1194
+ --------------------------------------------------------------------------------------------------------------------------------------------
1195
+ ---------------------------------------------------------------------------------------------------
1196
+ Prototypical::ControllerTest::#enable_prototyping: test_0001_should append the protypical view path
1197
+ ---------------------------------------------------------------------------------------------------
1198
+ -----------------------------------------------------------------------------------------------------------------------------------------
1199
+ Prototypical::ControllerTest::including::when Prototypical.enabled_on_include? is true: test_0001_should automatically enable prototyping
1200
+ -----------------------------------------------------------------------------------------------------------------------------------------
1201
+ ---------------------------------
1202
+ PrototypicalTest: test_0001_truth
1203
+ ---------------------------------
1204
+ --------------------------------------------------------------------------------------------------------------------------------------------
1205
+ Prototypical::ControllerTest::including::when Prototypical.enable_on_include is false: test_0001_should not automatically enable prototyping
1206
+ --------------------------------------------------------------------------------------------------------------------------------------------
1207
+ -------------------------------
1208
+ RootTest: test_0001_should work
1209
+ -------------------------------
1210
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:43:12 +0000
1211
+ Processing by StaticController#home as HTML
1212
+ Rendered static/home.html.erb within layouts/application (0.7ms)
1213
+ Completed 200 OK in 6ms (Views: 5.5ms)
1214
+ -----------------------------------------------------------------------------
1215
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1216
+ -----------------------------------------------------------------------------
1217
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:43:12 +0000
1218
+ Processing by StaticController#disabled_prototype as HTML
1219
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.2ms)
1220
+ Completed 200 OK in 1ms (Views: 1.0ms)
1221
+ -----------------------------------------------------------------------------------------
1222
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1223
+ -----------------------------------------------------------------------------------------
1224
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:43:12 +0000
1225
+ Processing by StaticController#enabled_prototype as HTML
1226
+ Rendered app/prototypes/static/enabled_prototype.html.erb within layouts/application (0.2ms)
1227
+ Completed 200 OK in 2ms (Views: 1.3ms)
1228
+ -------------------------------
1229
+ RootTest: test_0001_should work
1230
+ -------------------------------
1231
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:43:51 +0000
1232
+ Processing by StaticController#home as HTML
1233
+ Rendered static/home.html.erb within layouts/application (0.7ms)
1234
+ Completed 200 OK in 6ms (Views: 5.5ms)
1235
+ -----------------------------------------------------------------------------------------
1236
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1237
+ -----------------------------------------------------------------------------------------
1238
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:43:52 +0000
1239
+ Processing by StaticController#enabled_prototype as HTML
1240
+ Rendered app/prototypes/static/enabled_prototype.html.erb within layouts/application (0.2ms)
1241
+ Completed 200 OK in 2ms (Views: 1.3ms)
1242
+ -----------------------------------------------------------------------------
1243
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1244
+ -----------------------------------------------------------------------------
1245
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:43:52 +0000
1246
+ Processing by StaticController#disabled_prototype as HTML
1247
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.2ms)
1248
+ Completed 200 OK in 1ms (Views: 1.0ms)
1249
+ ---------------------------------
1250
+ PrototypicalTest: test_0001_truth
1251
+ ---------------------------------
1252
+ --------------------------------------------------------------------------------------------------------------------------------------------
1253
+ Prototypical::ControllerTest::including::when Prototypical.enable_on_include is false: test_0001_should not automatically enable prototyping
1254
+ --------------------------------------------------------------------------------------------------------------------------------------------
1255
+ ---------------------------------------------------------------------------------------------------
1256
+ Prototypical::ControllerTest::#enable_prototyping: test_0001_should append the protypical view path
1257
+ ---------------------------------------------------------------------------------------------------
1258
+ -----------------------------------------------------------------------------------------------------------------------------------------
1259
+ Prototypical::ControllerTest::including::when Prototypical.enabled_on_include? is true: test_0001_should automatically enable prototyping
1260
+ -----------------------------------------------------------------------------------------------------------------------------------------
1261
+ ---------------------------------------------------------------------------------------------------
1262
+ Prototypical::ControllerTest::#enable_prototyping: test_0001_should append the protypical view path
1263
+ ---------------------------------------------------------------------------------------------------
1264
+ ---------------------------------
1265
+ PrototypicalTest: test_0001_truth
1266
+ ---------------------------------
1267
+ -----------------------------------------------------------------------------
1268
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1269
+ -----------------------------------------------------------------------------
1270
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:44:07 +0000
1271
+ Processing by StaticController#disabled_prototype as HTML
1272
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.7ms)
1273
+ Completed 200 OK in 6ms (Views: 5.5ms)
1274
+ -----------------------------------------------------------------------------------------
1275
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1276
+ -----------------------------------------------------------------------------------------
1277
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:44:07 +0000
1278
+ Processing by StaticController#enabled_prototype as HTML
1279
+ Rendered app/prototypes/static/enabled_prototype.html.erb within layouts/application (0.2ms)
1280
+ Completed 200 OK in 2ms (Views: 1.3ms)
1281
+ -------------------------------
1282
+ RootTest: test_0001_should work
1283
+ -------------------------------
1284
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:44:07 +0000
1285
+ Processing by StaticController#home as HTML
1286
+ Rendered static/home.html.erb within layouts/application (0.2ms)
1287
+ Completed 200 OK in 1ms (Views: 0.9ms)
1288
+ -----------------------------------------------------------------------------------------------------------------------------------------
1289
+ Prototypical::ControllerTest::including::when Prototypical.enabled_on_include? is true: test_0001_should automatically enable prototyping
1290
+ -----------------------------------------------------------------------------------------------------------------------------------------
1291
+ --------------------------------------------------------------------------------------------------------------------------------------------
1292
+ Prototypical::ControllerTest::including::when Prototypical.enable_on_include is false: test_0001_should not automatically enable prototyping
1293
+ --------------------------------------------------------------------------------------------------------------------------------------------
1294
+ ---------------------------------
1295
+ PrototypicalTest: test_0001_truth
1296
+ ---------------------------------
1297
+ -----------------------------------------------------------------------------
1298
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1299
+ -----------------------------------------------------------------------------
1300
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:45:30 +0000
1301
+ Processing by StaticController#disabled_prototype as HTML
1302
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.7ms)
1303
+ Completed 200 OK in 6ms (Views: 5.8ms)
1304
+ -----------------------------------------------------------------------------------------
1305
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1306
+ -----------------------------------------------------------------------------------------
1307
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:45:30 +0000
1308
+ Processing by StaticController#enabled_prototype as HTML
1309
+ Rendered app/prototypes/static/enabled_prototype.html.erb within layouts/application (0.2ms)
1310
+ Completed 200 OK in 2ms (Views: 1.3ms)
1311
+ -------------------------------
1312
+ RootTest: test_0001_should work
1313
+ -------------------------------
1314
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:45:30 +0000
1315
+ Processing by StaticController#home as HTML
1316
+ Rendered static/home.html.erb within layouts/application (0.2ms)
1317
+ Completed 200 OK in 1ms (Views: 1.0ms)
1318
+ --------------------------------------------------------------------------------------------------------------------------------------------
1319
+ Prototypical::ControllerTest::including::when Prototypical.enable_on_include is false: test_0001_should not automatically enable prototyping
1320
+ --------------------------------------------------------------------------------------------------------------------------------------------
1321
+ -----------------------------------------------------------------------------------------------------------------------------------------
1322
+ Prototypical::ControllerTest::including::when Prototypical.enabled_on_include? is true: test_0001_should automatically enable prototyping
1323
+ -----------------------------------------------------------------------------------------------------------------------------------------
1324
+ ---------------------------------------------------------------------------------------------------
1325
+ Prototypical::ControllerTest::#enable_prototyping: test_0001_should append the protypical view path
1326
+ ---------------------------------------------------------------------------------------------------
1327
+ -----------------------------------------------------------------------------------------------------------------------------------------
1328
+ Prototypical::ControllerTest::including::when Prototypical.enabled_on_include? is true: test_0001_should automatically enable prototyping
1329
+ -----------------------------------------------------------------------------------------------------------------------------------------
1330
+ -------------------------------
1331
+ RootTest: test_0001_should work
1332
+ -------------------------------
1333
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:48:34 +0000
1334
+ Processing by StaticController#home as HTML
1335
+ Rendered static/home.html.erb within layouts/application (0.7ms)
1336
+ Completed 200 OK in 6ms (Views: 5.6ms)
1337
+ -----------------------------------------------------------------------------------------
1338
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1339
+ -----------------------------------------------------------------------------------------
1340
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:48:34 +0000
1341
+ Processing by StaticController#enabled_prototype as HTML
1342
+ Rendered app/prototypes/static/enabled_prototype.html.erb within layouts/application (0.2ms)
1343
+ Completed 200 OK in 2ms (Views: 1.4ms)
1344
+ -----------------------------------------------------------------------------
1345
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1346
+ -----------------------------------------------------------------------------
1347
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:48:34 +0000
1348
+ Processing by StaticController#disabled_prototype as HTML
1349
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.2ms)
1350
+ Completed 200 OK in 1ms (Views: 1.0ms)
1351
+ ---------------------------------------------------------------------------------------------------
1352
+ Prototypical::ControllerTest::#enable_prototyping: test_0001_should append the protypical view path
1353
+ ---------------------------------------------------------------------------------------------------
1354
+ ---------------------------------
1355
+ PrototypicalTest: test_0001_truth
1356
+ ---------------------------------
1357
+ --------------------------------------------------------------------------------------------------------------------------------------------
1358
+ Prototypical::ControllerTest::including::when Prototypical.enable_on_include is false: test_0001_should not automatically enable prototyping
1359
+ --------------------------------------------------------------------------------------------------------------------------------------------
1360
+ -----------------------------------------------------------------------------------------------------------------------------------------
1361
+ Prototypical::ControllerTest::including::when Prototypical.enabled_on_include? is true: test_0001_should automatically enable prototyping
1362
+ -----------------------------------------------------------------------------------------------------------------------------------------
1363
+ ---------------------------------
1364
+ PrototypicalTest: test_0001_truth
1365
+ ---------------------------------
1366
+ -------------------------------------------------------------------------------------------------------------------
1367
+ Prototypical::ControllerTest::#enable_prototyping::when Prototypical.enabled? is false: test_0001_should do nothing
1368
+ -------------------------------------------------------------------------------------------------------------------
1369
+ ---------------------------------------------------------------------------------------------------------------------------------------
1370
+ Prototypical::ControllerTest::#enable_prototyping::when Prototypical.enabled? is true: test_0001_should append the protypical view path
1371
+ ---------------------------------------------------------------------------------------------------------------------------------------
1372
+ --------------------------------------------------------------------------------------------------------------------------------------------
1373
+ Prototypical::ControllerTest::including::when Prototypical.enable_on_include is false: test_0001_should not automatically enable prototyping
1374
+ --------------------------------------------------------------------------------------------------------------------------------------------
1375
+ -------------------------------
1376
+ RootTest: test_0001_should work
1377
+ -------------------------------
1378
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:53:04 +0000
1379
+ Processing by StaticController#home as HTML
1380
+ Rendered static/home.html.erb within layouts/application (0.7ms)
1381
+ Completed 200 OK in 6ms (Views: 5.5ms)
1382
+ -----------------------------------------------------------------------------------------
1383
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1384
+ -----------------------------------------------------------------------------------------
1385
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:53:04 +0000
1386
+ Processing by StaticController#enabled_prototype as HTML
1387
+ Rendered app/prototypes/static/enabled_prototype.html.erb within layouts/application (0.2ms)
1388
+ Completed 200 OK in 2ms (Views: 1.3ms)
1389
+ -----------------------------------------------------------------------------
1390
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1391
+ -----------------------------------------------------------------------------
1392
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:53:04 +0000
1393
+ Processing by StaticController#disabled_prototype as HTML
1394
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.2ms)
1395
+ Completed 200 OK in 1ms (Views: 1.0ms)
1396
+ --------------------------------------------------------------------------------------------------------------------------------------------
1397
+ Prototypical::ControllerTest::including::when Prototypical.enable_on_include is false: test_0001_should not automatically enable prototyping
1398
+ --------------------------------------------------------------------------------------------------------------------------------------------
1399
+ ---------------------------------
1400
+ PrototypicalTest: test_0001_truth
1401
+ ---------------------------------
1402
+ ---------------------------------------------------------------------------------------------------------------------------------------
1403
+ Prototypical::ControllerTest::#enable_prototyping::when Prototypical.enabled? is true: test_0001_should append the protypical view path
1404
+ ---------------------------------------------------------------------------------------------------------------------------------------
1405
+ -------------------------------------------------------------------------------------------------------------------
1406
+ Prototypical::ControllerTest::#enable_prototyping::when Prototypical.enabled? is false: test_0001_should do nothing
1407
+ -------------------------------------------------------------------------------------------------------------------
1408
+ -------------------------------
1409
+ RootTest: test_0001_should work
1410
+ -------------------------------
1411
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:53:38 +0000
1412
+ Processing by StaticController#home as HTML
1413
+ Rendered static/home.html.erb within layouts/application (0.7ms)
1414
+ Completed 200 OK in 6ms (Views: 5.7ms)
1415
+ -----------------------------------------------------------------------------------------
1416
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1417
+ -----------------------------------------------------------------------------------------
1418
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:53:38 +0000
1419
+ Processing by StaticController#enabled_prototype as HTML
1420
+ Completed 500 Internal Server Error in 0ms
1421
+ -----------------------------------------------------------------------------
1422
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1423
+ -----------------------------------------------------------------------------
1424
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:53:38 +0000
1425
+ Processing by StaticController#disabled_prototype as HTML
1426
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.2ms)
1427
+ Completed 200 OK in 1ms (Views: 1.0ms)
1428
+ -----------------------------------------------------------------------------------------------------------------------------------------
1429
+ Prototypical::ControllerTest::including::when Prototypical.enabled_on_include? is true: test_0001_should automatically enable prototyping
1430
+ -----------------------------------------------------------------------------------------------------------------------------------------
1431
+ ---------------------------------
1432
+ PrototypicalTest: test_0001_truth
1433
+ ---------------------------------
1434
+ ---------------------------------------------------------------------------------------------------------------------------------------
1435
+ Prototypical::ControllerTest::#enable_prototyping::when Prototypical.enabled? is true: test_0001_should append the protypical view path
1436
+ ---------------------------------------------------------------------------------------------------------------------------------------
1437
+ -------------------------------
1438
+ RootTest: test_0001_should work
1439
+ -------------------------------
1440
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:54:05 +0000
1441
+ Processing by StaticController#home as HTML
1442
+ Rendered static/home.html.erb within layouts/application (0.7ms)
1443
+ Completed 200 OK in 6ms (Views: 6.0ms)
1444
+ -----------------------------------------------------------------------------------------
1445
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1446
+ -----------------------------------------------------------------------------------------
1447
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:54:06 +0000
1448
+ Processing by StaticController#enabled_prototype as HTML
1449
+ Rendered static/enabled_prototype.html.erb within layouts/application (0.2ms)
1450
+ Completed 200 OK in 1ms (Views: 1.0ms)
1451
+ -----------------------------------------------------------------------------
1452
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1453
+ -----------------------------------------------------------------------------
1454
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:54:06 +0000
1455
+ Processing by StaticController#disabled_prototype as HTML
1456
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.2ms)
1457
+ Completed 200 OK in 1ms (Views: 1.0ms)
1458
+ --------------------------------------------------------------------------------------------------------------------------------------------
1459
+ Prototypical::ControllerTest::including::when Prototypical.enable_on_include is false: test_0001_should not automatically enable prototyping
1460
+ --------------------------------------------------------------------------------------------------------------------------------------------
1461
+ -----------------------------------------------------------------------------------------------------------------------------------------
1462
+ Prototypical::ControllerTest::including::when Prototypical.enabled_on_include? is true: test_0001_should automatically enable prototyping
1463
+ -----------------------------------------------------------------------------------------------------------------------------------------
1464
+ -------------------------------------------------------------------------------------------------------------------
1465
+ Prototypical::ControllerTest::#enable_prototyping::when Prototypical.enabled? is false: test_0001_should do nothing
1466
+ -------------------------------------------------------------------------------------------------------------------
1467
+ ---------------------------------
1468
+ PrototypicalTest: test_0001_truth
1469
+ ---------------------------------
1470
+ --------------------------------------------------------------------------------------------------------------------------------------------
1471
+ Prototypical::ControllerTest::including::when Prototypical.enable_on_include is false: test_0001_should not automatically enable prototyping
1472
+ --------------------------------------------------------------------------------------------------------------------------------------------
1473
+ -------------------------------------------------------------------------------------------------------------------
1474
+ Prototypical::ControllerTest::#enable_prototyping::when Prototypical.enabled? is false: test_0001_should do nothing
1475
+ -------------------------------------------------------------------------------------------------------------------
1476
+ -----------------------------------------------------------------------------
1477
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1478
+ -----------------------------------------------------------------------------
1479
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:54:33 +0000
1480
+ Processing by StaticController#disabled_prototype as HTML
1481
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.7ms)
1482
+ Completed 200 OK in 6ms (Views: 5.8ms)
1483
+ -----------------------------------------------------------------------------------------
1484
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1485
+ -----------------------------------------------------------------------------------------
1486
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:54:33 +0000
1487
+ Processing by StaticController#enabled_prototype as HTML
1488
+ Rendered static/enabled_prototype.html.erb within layouts/application (0.2ms)
1489
+ Completed 200 OK in 1ms (Views: 1.1ms)
1490
+ -------------------------------
1491
+ RootTest: test_0001_should work
1492
+ -------------------------------
1493
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:54:33 +0000
1494
+ Processing by StaticController#home as HTML
1495
+ Rendered static/home.html.erb within layouts/application (0.2ms)
1496
+ Completed 200 OK in 1ms (Views: 1.0ms)
1497
+ -----------------------------------------------------------------------------------------------------------------------------------------
1498
+ Prototypical::ControllerTest::including::when Prototypical.enabled_on_include? is true: test_0001_should automatically enable prototyping
1499
+ -----------------------------------------------------------------------------------------------------------------------------------------
1500
+ ---------------------------------------------------------------------------------------------------------------------------------------
1501
+ Prototypical::ControllerTest::#enable_prototyping::when Prototypical.enabled? is true: test_0001_should append the protypical view path
1502
+ ---------------------------------------------------------------------------------------------------------------------------------------
1503
+ -----------------------------------------------------------------------------------------------------------------------------------------
1504
+ Prototypical::ControllerTest::including::when Prototypical.enabled_on_include? is true: test_0001_should automatically enable prototyping
1505
+ -----------------------------------------------------------------------------------------------------------------------------------------
1506
+ -----------------------------------------------------------------------------------------
1507
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1508
+ -----------------------------------------------------------------------------------------
1509
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-08 23:55:31 +0000
1510
+ Processing by StaticController#enabled_prototype as HTML
1511
+ Rendered app/prototypes/static/enabled_prototype.html.erb within layouts/application (0.7ms)
1512
+ Completed 200 OK in 6ms (Views: 5.9ms)
1513
+ -------------------------------
1514
+ RootTest: test_0001_should work
1515
+ -------------------------------
1516
+ Started GET "/" for 127.0.0.1 at 2015-12-08 23:55:31 +0000
1517
+ Processing by StaticController#home as HTML
1518
+ Rendered static/home.html.erb within layouts/application (0.2ms)
1519
+ Completed 200 OK in 1ms (Views: 1.0ms)
1520
+ -----------------------------------------------------------------------------
1521
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1522
+ -----------------------------------------------------------------------------
1523
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-08 23:55:31 +0000
1524
+ Processing by StaticController#disabled_prototype as HTML
1525
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.2ms)
1526
+ Completed 200 OK in 1ms (Views: 1.0ms)
1527
+ --------------------------------------------------------------------------------------------------------------------------------------------
1528
+ Prototypical::ControllerTest::including::when Prototypical.enable_on_include is false: test_0001_should not automatically enable prototyping
1529
+ --------------------------------------------------------------------------------------------------------------------------------------------
1530
+ ---------------------------------------------------------------------------------------------------------------------------------------
1531
+ Prototypical::ControllerTest::#enable_prototyping::when Prototypical.enabled? is true: test_0001_should append the protypical view path
1532
+ ---------------------------------------------------------------------------------------------------------------------------------------
1533
+ ---------------------------------
1534
+ PrototypicalTest: test_0001_truth
1535
+ ---------------------------------
1536
+ -------------------------------------------------------------------------------------------------------------------
1537
+ Prototypical::ControllerTest::#enable_prototyping::when Prototypical.enabled? is false: test_0001_should do nothing
1538
+ -------------------------------------------------------------------------------------------------------------------
1539
+ -------------------------------------------------------------------------------------------------------------------
1540
+ Prototypical::ControllerTest::#enable_prototyping::when Prototypical.enabled? is false: test_0001_should do nothing
1541
+ -------------------------------------------------------------------------------------------------------------------
1542
+ -----------------------------------------------------------------------------------------
1543
+ RootTest: test_0002_should display a prototype if there is one and prototyping is enabled
1544
+ -----------------------------------------------------------------------------------------
1545
+ Started GET "/enabled_prototype" for 127.0.0.1 at 2015-12-09 00:15:11 +0000
1546
+ Processing by StaticController#enabled_prototype as HTML
1547
+ Rendered app/prototypes/static/enabled_prototype.html.erb within layouts/application (0.7ms)
1548
+ Completed 200 OK in 7ms (Views: 6.3ms)
1549
+ -------------------------------
1550
+ RootTest: test_0001_should work
1551
+ -------------------------------
1552
+ Started GET "/" for 127.0.0.1 at 2015-12-09 00:15:11 +0000
1553
+ Processing by StaticController#home as HTML
1554
+ Rendered static/home.html.erb within layouts/application (0.2ms)
1555
+ Completed 200 OK in 1ms (Views: 1.0ms)
1556
+ -----------------------------------------------------------------------------
1557
+ RootTest: test_0003_should not display a prototype if prototyping is disabled
1558
+ -----------------------------------------------------------------------------
1559
+ Started GET "/disabled_prototype" for 127.0.0.1 at 2015-12-09 00:15:11 +0000
1560
+ Processing by StaticController#disabled_prototype as HTML
1561
+ Rendered static/disabled_prototype.html.erb within layouts/application (0.2ms)
1562
+ Completed 200 OK in 1ms (Views: 1.0ms)
1563
+ ---------------------------------
1564
+ PrototypicalTest: test_0001_truth
1565
+ ---------------------------------
1566
+ ---------------------------------------------------------------------------------------------------------------------------------------
1567
+ Prototypical::ControllerTest::#enable_prototyping::when Prototypical.enabled? is true: test_0001_should append the protypical view path
1568
+ ---------------------------------------------------------------------------------------------------------------------------------------
1569
+ --------------------------------------------------------------------------------------------------------------------------------------------
1570
+ Prototypical::ControllerTest::including::when Prototypical.enable_on_include is false: test_0001_should not automatically enable prototyping
1571
+ --------------------------------------------------------------------------------------------------------------------------------------------
1572
+ -----------------------------------------------------------------------------------------------------------------------------------------
1573
+ Prototypical::ControllerTest::including::when Prototypical.enabled_on_include? is true: test_0001_should automatically enable prototyping
1574
+ -----------------------------------------------------------------------------------------------------------------------------------------