bootstrap-rails-flash 0.1.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 (63) hide show
  1. checksums.yaml +7 -0
  2. data/MIT-LICENSE +20 -0
  3. data/Rakefile +32 -0
  4. data/app/views/shared/_flash_messages.html.haml +6 -0
  5. data/lib/application_helper.rb +5 -0
  6. data/lib/bootstrap_helper.rb +19 -0
  7. data/lib/bootstrap_rails_flash.rb +6 -0
  8. data/lib/generators/bootstrap_rails_flash/install_generator.rb +16 -0
  9. data/test/controllers/messages_controller_test.rb +10 -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/javascripts/messages.js +2 -0
  14. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  15. data/test/dummy/app/assets/stylesheets/messages.css +4 -0
  16. data/test/dummy/app/controllers/application_controller.rb +6 -0
  17. data/test/dummy/app/controllers/messages_controller.rb +10 -0
  18. data/test/dummy/app/helpers/application_helper.rb +3 -0
  19. data/test/dummy/app/helpers/messages_helper.rb +2 -0
  20. data/test/dummy/app/views/layouts/application.html.erb +15 -0
  21. data/test/dummy/app/views/messages/show.html.erb +0 -0
  22. data/test/dummy/app/views/shared/_flash_messages.html.haml +6 -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/config.ru +4 -0
  27. data/test/dummy/config/application.rb +23 -0
  28. data/test/dummy/config/boot.rb +5 -0
  29. data/test/dummy/config/database.yml +25 -0
  30. data/test/dummy/config/environment.rb +5 -0
  31. data/test/dummy/config/environments/development.rb +37 -0
  32. data/test/dummy/config/environments/production.rb +83 -0
  33. data/test/dummy/config/environments/test.rb +39 -0
  34. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  35. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  36. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  37. data/test/dummy/config/initializers/inflections.rb +16 -0
  38. data/test/dummy/config/initializers/mime_types.rb +4 -0
  39. data/test/dummy/config/initializers/session_store.rb +3 -0
  40. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  41. data/test/dummy/config/locales/en.yml +23 -0
  42. data/test/dummy/config/routes.rb +58 -0
  43. data/test/dummy/config/secrets.yml +22 -0
  44. data/test/dummy/db/test.sqlite3 +0 -0
  45. data/test/dummy/log/development.log +0 -0
  46. data/test/dummy/log/test.log +800 -0
  47. data/test/dummy/public/404.html +67 -0
  48. data/test/dummy/public/422.html +67 -0
  49. data/test/dummy/public/500.html +66 -0
  50. data/test/dummy/public/favicon.ico +0 -0
  51. data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
  52. data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
  53. data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
  54. data/test/dummy/tmp/cache/assets/test/sprockets/5ee5f7991cf019a63fddbff773165546 +0 -0
  55. data/test/dummy/tmp/cache/assets/test/sprockets/75c44f500e9640bb837517858e4e4b55 +0 -0
  56. data/test/dummy/tmp/cache/assets/test/sprockets/88a727f64606316cf6a31e02023ddc52 +0 -0
  57. data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
  58. data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
  59. data/test/dummy/tmp/cache/assets/test/sprockets/d91b21f330b02be1b32de21393a7ba5b +0 -0
  60. data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
  61. data/test/helpers/bootstrap_helper_test.rb +10 -0
  62. data/test/test_helper.rb +15 -0
  63. metadata +202 -0
@@ -0,0 +1,39 @@
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 asset server for tests with Cache-Control for performance.
16
+ config.serve_static_assets = 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
+ # Print deprecation notices to the stderr.
35
+ config.active_support.deprecation = :stderr
36
+
37
+ # Raises error for missing translations
38
+ # config.action_view.raise_on_missing_translations = true
39
+ end
@@ -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,14 @@
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
10
+
11
+ # To enable root element in JSON for ActiveRecord objects.
12
+ # ActiveSupport.on_load(:active_record) do
13
+ # self.include_root_in_json = true
14
+ # 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,58 @@
1
+ Rails.application.routes.draw do
2
+ get 'messages/show'
3
+
4
+ # The priority is based upon order of creation: first created -> highest priority.
5
+ # See how all your routes lay out with "rake routes".
6
+
7
+ # You can have the root of your site routed with "root"
8
+ # root 'welcome#index'
9
+
10
+ # Example of regular route:
11
+ # get 'products/:id' => 'catalog#view'
12
+
13
+ # Example of named route that can be invoked with purchase_url(id: product.id)
14
+ # get 'products/:id/purchase' => 'catalog#purchase', as: :purchase
15
+
16
+ # Example resource route (maps HTTP verbs to controller actions automatically):
17
+ # resources :products
18
+
19
+ # Example resource route with options:
20
+ # resources :products do
21
+ # member do
22
+ # get 'short'
23
+ # post 'toggle'
24
+ # end
25
+ #
26
+ # collection do
27
+ # get 'sold'
28
+ # end
29
+ # end
30
+
31
+ # Example resource route with sub-resources:
32
+ # resources :products do
33
+ # resources :comments, :sales
34
+ # resource :seller
35
+ # end
36
+
37
+ # Example resource route with more complex sub-resources:
38
+ # resources :products do
39
+ # resources :comments
40
+ # resources :sales do
41
+ # get 'recent', on: :collection
42
+ # end
43
+ # end
44
+
45
+ # Example resource route with concerns:
46
+ # concern :toggleable do
47
+ # post 'toggle'
48
+ # end
49
+ # resources :posts, concerns: :toggleable
50
+ # resources :photos, concerns: :toggleable
51
+
52
+ # Example resource route within a namespace:
53
+ # namespace :admin do
54
+ # # Directs /admin/products/* to Admin::ProductsController
55
+ # # (app/controllers/admin/products_controller.rb)
56
+ # resources :products
57
+ # end
58
+ 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: 9a40f2dd96b89c9f79b379001306c627356a12633bd9a1f515beba0495661a59b883180f392175e220a3d48429d8072189849d6590d647e1399269d06f6f4073
15
+
16
+ test:
17
+ secret_key_base: 986a94207b38eb48db4e2b98d6c3fbb43ce589849cfb260497ce282039eb907fd6b3f38d2e3717b7b60f031897d309cdc01eb6823657c78ebb3b79724e5a9811
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"] %>
File without changes
File without changes
@@ -0,0 +1,800 @@
1
+  (0.1ms) begin transaction
2
+ -----------------------------------
3
+ BootstrapRailsFlashTest: test_truth
4
+ -----------------------------------
5
+  (0.0ms) rollback transaction
6
+  (0.1ms) begin transaction
7
+ -----------------------------------
8
+ BootstrapRailsFlashTest: test_truth
9
+ -----------------------------------
10
+  (0.0ms) rollback transaction
11
+  (0.1ms) begin transaction
12
+ -----------------------------------
13
+ BootstrapRailsFlashTest: test_fails
14
+ -----------------------------------
15
+  (0.1ms) rollback transaction
16
+  (0.1ms) begin transaction
17
+ -----------------------------------------
18
+ BootstrapRailsFlashTest: test_fails_again
19
+ -----------------------------------------
20
+  (0.0ms) rollback transaction
21
+  (0.1ms) begin transaction
22
+ -----------------------------------
23
+ BootstrapRailsFlashTest: test_truth
24
+ -----------------------------------
25
+  (0.0ms) rollback transaction
26
+  (0.1ms) begin transaction
27
+ -----------------------------------
28
+ BootstrapRailsFlashTest: test_fails
29
+ -----------------------------------
30
+  (0.1ms) rollback transaction
31
+  (0.0ms) begin transaction
32
+ -----------------------------------------
33
+ BootstrapRailsFlashTest: test_fails_again
34
+ -----------------------------------------
35
+  (0.0ms) rollback transaction
36
+  (0.0ms) begin transaction
37
+ -----------------------------------
38
+ BootstrapRailsFlashTest: test_truth
39
+ -----------------------------------
40
+  (0.0ms) rollback transaction
41
+  (0.1ms) begin transaction
42
+ -----------------------------------------
43
+ BootstrapRailsFlashTest: test_fails_again
44
+ -----------------------------------------
45
+  (0.0ms) rollback transaction
46
+  (0.1ms) begin transaction
47
+ -----------------------------------------
48
+ BootstrapRailsFlashTest: test_fails_again
49
+ -----------------------------------------
50
+  (0.1ms) rollback transaction
51
+  (0.1ms) begin transaction
52
+ ---------------------------------------------------------
53
+ BootstrapRailsFlashTest: test_generator_copies_view_files
54
+ ---------------------------------------------------------
55
+  (0.2ms) rollback transaction
56
+  (0.1ms) begin transaction
57
+ ---------------------------------------------------------
58
+ BootstrapRailsFlashTest: test_generator_copies_view_files
59
+ ---------------------------------------------------------
60
+  (0.1ms) rollback transaction
61
+  (0.1ms) begin transaction
62
+ ---------------------------------------------------------
63
+ BootstrapRailsFlashTest: test_generator_copies_view_files
64
+ ---------------------------------------------------------
65
+  (0.1ms) rollback transaction
66
+  (0.1ms) begin transaction
67
+ ---------------------------------------------------------------
68
+ BootstrapRailsFlashTest: test_user_sees_bootstrap_flash_message
69
+ ---------------------------------------------------------------
70
+  (0.0ms) rollback transaction
71
+  (0.1ms) begin transaction
72
+ --------------------------------------------
73
+ MessagesControllerTest: test_should_get_show
74
+ --------------------------------------------
75
+ Processing by MessagesController#show as HTML
76
+ Rendered messages/show.html.erb within layouts/application (1.2ms)
77
+ Completed 200 OK in 27ms (Views: 27.0ms | ActiveRecord: 0.0ms)
78
+  (0.1ms) rollback transaction
79
+  (0.1ms) begin transaction
80
+ ----------------------------------------------
81
+ MessagesControllerTest: test_should_show_flash
82
+ ----------------------------------------------
83
+  (0.0ms) rollback transaction
84
+  (0.1ms) begin transaction
85
+ --------------------------------------------
86
+ MessagesControllerTest: test_should_get_show
87
+ --------------------------------------------
88
+ Processing by MessagesController#show as HTML
89
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
90
+ Completed 200 OK in 16ms (Views: 15.4ms | ActiveRecord: 0.0ms)
91
+  (0.1ms) rollback transaction
92
+  (0.0ms) begin transaction
93
+ ----------------------------------------------
94
+ MessagesControllerTest: test_should_show_flash
95
+ ----------------------------------------------
96
+  (0.0ms) rollback transaction
97
+  (0.1ms) begin transaction
98
+ --------------------------------------------
99
+ MessagesControllerTest: test_should_get_show
100
+ --------------------------------------------
101
+ Processing by MessagesController#show as HTML
102
+ Rendered messages/show.html.erb within layouts/application (1.0ms)
103
+ Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms)
104
+  (0.1ms) rollback transaction
105
+  (0.1ms) begin transaction
106
+ ----------------------------------------------
107
+ MessagesControllerTest: test_should_show_flash
108
+ ----------------------------------------------
109
+  (0.1ms) rollback transaction
110
+  (0.1ms) begin transaction
111
+ ----------------------------------------------------------------
112
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
113
+ ----------------------------------------------------------------
114
+ Processing by MessagesController#show as HTML
115
+ Rendered messages/show.html.erb within layouts/application (2.3ms)
116
+ Completed 200 OK in 26ms (Views: 26.1ms | ActiveRecord: 0.0ms)
117
+  (0.2ms) rollback transaction
118
+  (0.1ms) begin transaction
119
+ ----------------------------------------------------------------
120
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
121
+ ----------------------------------------------------------------
122
+ Processing by MessagesController#show as HTML
123
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
124
+ Completed 200 OK in 15ms (Views: 14.4ms | ActiveRecord: 0.0ms)
125
+  (0.1ms) rollback transaction
126
+  (0.1ms) begin transaction
127
+ ----------------------------------------------------------------
128
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
129
+ ----------------------------------------------------------------
130
+ Processing by MessagesController#show as HTML
131
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
132
+ Completed 200 OK in 16ms (Views: 15.6ms | ActiveRecord: 0.0ms)
133
+  (0.1ms) rollback transaction
134
+  (0.1ms) begin transaction
135
+ ----------------------------------------------------------------
136
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
137
+ ----------------------------------------------------------------
138
+ Processing by MessagesController#show as HTML
139
+ Rendered messages/show.html.erb within layouts/application (1.3ms)
140
+ Completed 200 OK in 16ms (Views: 16.0ms | ActiveRecord: 0.0ms)
141
+  (0.1ms) rollback transaction
142
+  (0.1ms) begin transaction
143
+ ----------------------------------------------------------------
144
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
145
+ ----------------------------------------------------------------
146
+ Processing by MessagesController#show as HTML
147
+ Rendered messages/show.html.erb within layouts/application (1.2ms)
148
+ Completed 200 OK in 16ms (Views: 15.8ms | ActiveRecord: 0.0ms)
149
+  (0.1ms) rollback transaction
150
+  (0.1ms) begin transaction
151
+ ----------------------------------------------------------------
152
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
153
+ ----------------------------------------------------------------
154
+ Processing by MessagesController#show as HTML
155
+ Rendered messages/show.html.erb within layouts/application (1.2ms)
156
+ Completed 200 OK in 15ms (Views: 14.7ms | ActiveRecord: 0.0ms)
157
+  (0.1ms) rollback transaction
158
+  (0.1ms) begin transaction
159
+ ----------------------------------------------------------------
160
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
161
+ ----------------------------------------------------------------
162
+ Processing by MessagesController#show as HTML
163
+ Rendered messages/show.html.erb within layouts/application (1.2ms)
164
+ Completed 200 OK in 15ms (Views: 14.3ms | ActiveRecord: 0.0ms)
165
+  (0.1ms) rollback transaction
166
+  (0.1ms) begin transaction
167
+ ----------------------------------------------------------------
168
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
169
+ ----------------------------------------------------------------
170
+ Processing by MessagesController#show as HTML
171
+ Rendered messages/show.html.erb within layouts/application (2.0ms)
172
+ Completed 200 OK in 20ms (Views: 19.7ms | ActiveRecord: 0.0ms)
173
+  (0.1ms) rollback transaction
174
+  (0.1ms) begin transaction
175
+ ----------------------------------------------------------------
176
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
177
+ ----------------------------------------------------------------
178
+ Processing by MessagesController#show as HTML
179
+ Rendered messages/show.html.erb within layouts/application (1.4ms)
180
+ Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.0ms)
181
+  (0.1ms) rollback transaction
182
+  (0.1ms) begin transaction
183
+ ----------------------------------------------------------------
184
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
185
+ ----------------------------------------------------------------
186
+ Processing by MessagesController#show as HTML
187
+ Rendered messages/show.html.erb within layouts/application (1.0ms)
188
+ Completed 200 OK in 14ms (Views: 13.6ms | ActiveRecord: 0.0ms)
189
+  (0.1ms) rollback transaction
190
+  (0.1ms) begin transaction
191
+ ------------------------------------------------------
192
+ BootstrapHelperTest: test_returns_class_for_flash_type
193
+ ------------------------------------------------------
194
+  (0.1ms) rollback transaction
195
+  (0.1ms) begin transaction
196
+ ------------------------------------------------------
197
+ BootstrapHelperTest: test_returns_class_for_flash_type
198
+ ------------------------------------------------------
199
+  (0.0ms) rollback transaction
200
+  (0.1ms) begin transaction
201
+ ------------------------------------------------------
202
+ BootstrapHelperTest: test_returns_class_for_flash_type
203
+ ------------------------------------------------------
204
+  (0.2ms) rollback transaction
205
+  (0.1ms) begin transaction
206
+ ------------------------------------------------------
207
+ BootstrapHelperTest: test_returns_class_for_flash_type
208
+ ------------------------------------------------------
209
+  (0.0ms) rollback transaction
210
+  (0.1ms) begin transaction
211
+ ----------------------------------------------------------------
212
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
213
+ ----------------------------------------------------------------
214
+ Processing by MessagesController#show as HTML
215
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
216
+ Completed 200 OK in 14ms (Views: 14.0ms | ActiveRecord: 0.0ms)
217
+  (0.1ms) rollback transaction
218
+  (0.0ms) begin transaction
219
+ ------------------------------------------------------
220
+ BootstrapHelperTest: test_returns_class_for_flash_type
221
+ ------------------------------------------------------
222
+  (0.0ms) rollback transaction
223
+  (0.1ms) begin transaction
224
+ ------------------------------------------------------
225
+ BootstrapHelperTest: test_returns_class_for_flash_type
226
+ ------------------------------------------------------
227
+  (0.0ms) rollback transaction
228
+  (0.1ms) begin transaction
229
+ ----------------------------------------------------------------
230
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
231
+ ----------------------------------------------------------------
232
+ Processing by MessagesController#show as HTML
233
+ Rendered messages/show.html.erb within layouts/application (1.0ms)
234
+ Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.0ms)
235
+  (0.1ms) rollback transaction
236
+  (0.1ms) begin transaction
237
+ ----------------------------------------------------------------
238
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
239
+ ----------------------------------------------------------------
240
+ Processing by MessagesController#show as HTML
241
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
242
+ Completed 200 OK in 17ms (Views: 16.5ms | ActiveRecord: 0.0ms)
243
+  (0.1ms) rollback transaction
244
+  (0.1ms) begin transaction
245
+ ----------------------------------------------------------------
246
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
247
+ ----------------------------------------------------------------
248
+ Processing by MessagesController#show as HTML
249
+ Rendered messages/show.html.erb within layouts/application (1.2ms)
250
+ Completed 500 Internal Server Error in 24ms
251
+  (0.1ms) rollback transaction
252
+  (0.1ms) begin transaction
253
+ ----------------------------------------------------------------
254
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
255
+ ----------------------------------------------------------------
256
+ Processing by MessagesController#show as HTML
257
+ Rendered messages/show.html.erb within layouts/application (1.0ms)
258
+ Completed 500 Internal Server Error in 19ms
259
+  (0.1ms) rollback transaction
260
+  (0.1ms) begin transaction
261
+ ------------------------------------------------------
262
+ BootstrapHelperTest: test_returns_class_for_flash_type
263
+ ------------------------------------------------------
264
+  (0.0ms) rollback transaction
265
+  (0.1ms) begin transaction
266
+ ------------------------------------------------------
267
+ BootstrapHelperTest: test_returns_class_for_flash_type
268
+ ------------------------------------------------------
269
+  (0.0ms) rollback transaction
270
+  (0.0ms) begin transaction
271
+ ----------------------------------------------------------------
272
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
273
+ ----------------------------------------------------------------
274
+ Processing by MessagesController#show as HTML
275
+ Rendered messages/show.html.erb within layouts/application (1.0ms)
276
+ Completed 500 Internal Server Error in 18ms
277
+  (0.1ms) rollback transaction
278
+  (0.1ms) begin transaction
279
+ ------------------------------------------------------
280
+ BootstrapHelperTest: test_returns_class_for_flash_type
281
+ ------------------------------------------------------
282
+  (0.0ms) rollback transaction
283
+  (0.0ms) begin transaction
284
+ ----------------------------------------------------------------
285
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
286
+ ----------------------------------------------------------------
287
+ Processing by MessagesController#show as HTML
288
+ Rendered messages/show.html.erb within layouts/application (2.1ms)
289
+ Completed 500 Internal Server Error in 20ms
290
+  (0.1ms) rollback transaction
291
+  (0.1ms) begin transaction
292
+ ----------------------------------------------------------------
293
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
294
+ ----------------------------------------------------------------
295
+ Processing by MessagesController#show as HTML
296
+ Rendered messages/show.html.erb within layouts/application (1.3ms)
297
+ Completed 500 Internal Server Error in 22ms
298
+  (0.1ms) rollback transaction
299
+  (0.1ms) begin transaction
300
+ ------------------------------------------------------
301
+ BootstrapHelperTest: test_returns_class_for_flash_type
302
+ ------------------------------------------------------
303
+  (0.0ms) rollback transaction
304
+  (0.1ms) begin transaction
305
+ ----------------------------------------------------------------
306
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
307
+ ----------------------------------------------------------------
308
+ Processing by MessagesController#show as HTML
309
+ Rendered messages/show.html.erb within layouts/application (1.3ms)
310
+ Rendered shared/_flash_messages.html.haml (13.4ms)
311
+ Completed 500 Internal Server Error in 32ms
312
+  (0.1ms) rollback transaction
313
+  (0.1ms) begin transaction
314
+ ------------------------------------------------------
315
+ BootstrapHelperTest: test_returns_class_for_flash_type
316
+ ------------------------------------------------------
317
+  (0.0ms) rollback transaction
318
+  (0.1ms) begin transaction
319
+ ------------------------------------------------------
320
+ BootstrapHelperTest: test_returns_class_for_flash_type
321
+ ------------------------------------------------------
322
+  (0.0ms) rollback transaction
323
+  (0.0ms) begin transaction
324
+ ----------------------------------------------------------------
325
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
326
+ ----------------------------------------------------------------
327
+ Processing by MessagesController#show as HTML
328
+ Rendered messages/show.html.erb within layouts/application (1.4ms)
329
+ Rendered shared/_flash_messages.html.haml (11.5ms)
330
+ Completed 500 Internal Server Error in 30ms
331
+  (0.1ms) rollback transaction
332
+  (0.1ms) begin transaction
333
+ ----------------------------------------------------------------
334
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
335
+ ----------------------------------------------------------------
336
+ Processing by MessagesController#show as HTML
337
+ Rendered messages/show.html.erb within layouts/application (1.3ms)
338
+ Rendered shared/_flash_messages.html.haml (11.6ms)
339
+ Completed 500 Internal Server Error in 32ms
340
+  (0.1ms) rollback transaction
341
+  (0.1ms) begin transaction
342
+ ------------------------------------------------------
343
+ BootstrapHelperTest: test_returns_class_for_flash_type
344
+ ------------------------------------------------------
345
+  (0.1ms) rollback transaction
346
+  (0.1ms) begin transaction
347
+ ------------------------------------------------------
348
+ BootstrapHelperTest: test_returns_class_for_flash_type
349
+ ------------------------------------------------------
350
+  (0.0ms) rollback transaction
351
+  (0.1ms) begin transaction
352
+ ------------------------------------------------------
353
+ BootstrapHelperTest: test_returns_class_for_flash_type
354
+ ------------------------------------------------------
355
+  (0.1ms) rollback transaction
356
+  (0.1ms) begin transaction
357
+ ------------------------------------------------------
358
+ BootstrapHelperTest: test_returns_class_for_flash_type
359
+ ------------------------------------------------------
360
+  (0.0ms) rollback transaction
361
+  (0.1ms) begin transaction
362
+ ------------------------------------------------------
363
+ BootstrapHelperTest: test_returns_class_for_flash_type
364
+ ------------------------------------------------------
365
+  (0.0ms) rollback transaction
366
+  (0.1ms) begin transaction
367
+ ------------------------------------------------------
368
+ BootstrapHelperTest: test_returns_class_for_flash_type
369
+ ------------------------------------------------------
370
+  (0.0ms) rollback transaction
371
+  (0.1ms) begin transaction
372
+ ----------------------------------------------------------------
373
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
374
+ ----------------------------------------------------------------
375
+ Processing by MessagesController#show as HTML
376
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
377
+ Rendered shared/_flash_messages.html.haml (13.6ms)
378
+ Completed 500 Internal Server Error in 30ms
379
+  (0.1ms) rollback transaction
380
+  (0.1ms) begin transaction
381
+ ------------------------------------------------------
382
+ BootstrapHelperTest: test_returns_class_for_flash_type
383
+ ------------------------------------------------------
384
+  (0.0ms) rollback transaction
385
+  (0.1ms) begin transaction
386
+ ------------------------------------------------------
387
+ BootstrapHelperTest: test_returns_class_for_flash_type
388
+ ------------------------------------------------------
389
+  (0.0ms) rollback transaction
390
+  (0.1ms) begin transaction
391
+ ------------------------------------------------------
392
+ BootstrapHelperTest: test_returns_class_for_flash_type
393
+ ------------------------------------------------------
394
+  (0.0ms) rollback transaction
395
+  (0.0ms) begin transaction
396
+ ----------------------------------------------------------------
397
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
398
+ ----------------------------------------------------------------
399
+ Processing by MessagesController#show as HTML
400
+ Rendered messages/show.html.erb within layouts/application (1.2ms)
401
+ Rendered shared/_flash_messages.html.haml (10.4ms)
402
+ Completed 500 Internal Server Error in 29ms
403
+  (0.1ms) rollback transaction
404
+  (0.1ms) begin transaction
405
+ ------------------------------------------------------
406
+ BootstrapHelperTest: test_returns_class_for_flash_type
407
+ ------------------------------------------------------
408
+  (0.0ms) rollback transaction
409
+  (0.1ms) begin transaction
410
+ ------------------------------------------------------
411
+ BootstrapHelperTest: test_returns_class_for_flash_type
412
+ ------------------------------------------------------
413
+  (0.0ms) rollback transaction
414
+  (0.1ms) begin transaction
415
+ ------------------------------------------------------
416
+ BootstrapHelperTest: test_returns_class_for_flash_type
417
+ ------------------------------------------------------
418
+  (0.0ms) rollback transaction
419
+  (0.0ms) begin transaction
420
+ ----------------------------------------------------------------
421
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
422
+ ----------------------------------------------------------------
423
+ Processing by MessagesController#show as HTML
424
+ Rendered messages/show.html.erb within layouts/application (1.0ms)
425
+ Rendered shared/_flash_messages.html.haml (12.6ms)
426
+ Completed 500 Internal Server Error in 32ms
427
+  (0.1ms) rollback transaction
428
+  (0.1ms) begin transaction
429
+ ------------------------------------------------------
430
+ BootstrapHelperTest: test_returns_class_for_flash_type
431
+ ------------------------------------------------------
432
+  (0.0ms) rollback transaction
433
+  (0.0ms) begin transaction
434
+ ----------------------------------------------------------------
435
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
436
+ ----------------------------------------------------------------
437
+ Processing by MessagesController#show as HTML
438
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
439
+ Rendered shared/_flash_messages.html.haml (181365.2ms)
440
+ Completed 500 Internal Server Error in 181383ms
441
+  (0.1ms) rollback transaction
442
+  (0.1ms) begin transaction
443
+ ------------------------------------------------------
444
+ BootstrapHelperTest: test_returns_class_for_flash_type
445
+ ------------------------------------------------------
446
+  (0.0ms) rollback transaction
447
+  (0.0ms) begin transaction
448
+ ----------------------------------------------------------------
449
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
450
+ ----------------------------------------------------------------
451
+ Processing by MessagesController#show as HTML
452
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
453
+ Rendered shared/_flash_messages.html.haml (1833.5ms)
454
+ Completed 200 OK in 1851ms (Views: 1851.2ms | ActiveRecord: 0.0ms)
455
+  (0.1ms) rollback transaction
456
+  (0.1ms) begin transaction
457
+ ------------------------------------------------------
458
+ BootstrapHelperTest: test_returns_class_for_flash_type
459
+ ------------------------------------------------------
460
+  (0.0ms) rollback transaction
461
+  (0.0ms) begin transaction
462
+ ----------------------------------------------------------------
463
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
464
+ ----------------------------------------------------------------
465
+ Processing by MessagesController#show as HTML
466
+ Rendered messages/show.html.erb within layouts/application (1.4ms)
467
+ Rendered shared/_flash_messages.html.haml (10.5ms)
468
+ Completed 500 Internal Server Error in 29ms
469
+  (0.1ms) rollback transaction
470
+  (0.1ms) begin transaction
471
+ ------------------------------------------------------
472
+ BootstrapHelperTest: test_returns_class_for_flash_type
473
+ ------------------------------------------------------
474
+  (0.0ms) rollback transaction
475
+  (0.0ms) begin transaction
476
+ ----------------------------------------------------------------
477
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
478
+ ----------------------------------------------------------------
479
+ Processing by MessagesController#show as HTML
480
+ Rendered messages/show.html.erb within layouts/application (1.3ms)
481
+ Rendered shared/_flash_messages.html.haml (11.0ms)
482
+ Completed 500 Internal Server Error in 30ms
483
+  (0.1ms) rollback transaction
484
+  (0.1ms) begin transaction
485
+ ------------------------------------------------------
486
+ BootstrapHelperTest: test_returns_class_for_flash_type
487
+ ------------------------------------------------------
488
+  (0.0ms) rollback transaction
489
+  (0.1ms) begin transaction
490
+ ----------------------------------------------------------------
491
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
492
+ ----------------------------------------------------------------
493
+ Processing by MessagesController#show as HTML
494
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
495
+ Rendered shared/_flash_messages.html.haml (14.7ms)
496
+ Completed 500 Internal Server Error in 31ms
497
+  (0.1ms) rollback transaction
498
+  (0.1ms) begin transaction
499
+ ----------------------------------------------------------------
500
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
501
+ ----------------------------------------------------------------
502
+ Processing by MessagesController#show as HTML
503
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
504
+ Rendered shared/_flash_messages.html.haml (2.8ms)
505
+ Completed 200 OK in 22ms (Views: 21.7ms | ActiveRecord: 0.0ms)
506
+  (0.1ms) rollback transaction
507
+  (0.1ms) begin transaction
508
+ ------------------------------------------------------
509
+ BootstrapHelperTest: test_returns_class_for_flash_type
510
+ ------------------------------------------------------
511
+  (0.0ms) rollback transaction
512
+  (0.1ms) begin transaction
513
+ ----------------------------------------------------------------
514
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
515
+ ----------------------------------------------------------------
516
+ Processing by MessagesController#show as HTML
517
+ Rendered messages/show.html.erb within layouts/application (1.2ms)
518
+ Rendered shared/_flash_messages.html.haml (2.7ms)
519
+ Completed 200 OK in 22ms (Views: 21.4ms | ActiveRecord: 0.0ms)
520
+  (0.1ms) rollback transaction
521
+  (0.1ms) begin transaction
522
+ ------------------------------------------------------
523
+ BootstrapHelperTest: test_returns_class_for_flash_type
524
+ ------------------------------------------------------
525
+  (0.0ms) rollback transaction
526
+  (0.1ms) begin transaction
527
+ ------------------------------------------------------
528
+ BootstrapHelperTest: test_returns_class_for_flash_type
529
+ ------------------------------------------------------
530
+  (0.0ms) rollback transaction
531
+  (0.0ms) begin transaction
532
+ ----------------------------------------------------------------
533
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
534
+ ----------------------------------------------------------------
535
+ Processing by MessagesController#show as HTML
536
+ Rendered messages/show.html.erb within layouts/application (1.4ms)
537
+ Rendered shared/_flash_messages.html.haml (2.1ms)
538
+ Completed 200 OK in 20ms (Views: 20.1ms | ActiveRecord: 0.0ms)
539
+  (0.1ms) rollback transaction
540
+  (0.1ms) begin transaction
541
+ ----------------------------------------------------------------
542
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
543
+ ----------------------------------------------------------------
544
+ Processing by MessagesController#show as HTML
545
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
546
+ Rendered shared/_flash_messages.html.haml (2.2ms)
547
+ Completed 200 OK in 19ms (Views: 19.0ms | ActiveRecord: 0.0ms)
548
+  (0.1ms) rollback transaction
549
+  (0.1ms) begin transaction
550
+ ------------------------------------------------------
551
+ BootstrapHelperTest: test_returns_class_for_flash_type
552
+ ------------------------------------------------------
553
+  (0.0ms) rollback transaction
554
+  (0.1ms) begin transaction
555
+ ----------------------------------------------------------------
556
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
557
+ ----------------------------------------------------------------
558
+ Processing by MessagesController#show as HTML
559
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
560
+ Rendered shared/_flash_messages.html.haml (2.1ms)
561
+ Completed 200 OK in 20ms (Views: 19.1ms | ActiveRecord: 0.0ms)
562
+  (0.1ms) rollback transaction
563
+  (0.1ms) begin transaction
564
+ ------------------------------------------------------
565
+ BootstrapHelperTest: test_returns_class_for_flash_type
566
+ ------------------------------------------------------
567
+  (0.1ms) rollback transaction
568
+  (0.1ms) begin transaction
569
+ ------------------------------------------------------
570
+ BootstrapHelperTest: test_returns_class_for_flash_type
571
+ ------------------------------------------------------
572
+  (0.0ms) rollback transaction
573
+  (0.0ms) begin transaction
574
+ ----------------------------------------------------------------
575
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
576
+ ----------------------------------------------------------------
577
+ Processing by MessagesController#show as HTML
578
+ Rendered messages/show.html.erb within layouts/application (1.4ms)
579
+ Rendered shared/_flash_messages.html.haml (2.1ms)
580
+ Completed 200 OK in 20ms (Views: 20.0ms | ActiveRecord: 0.0ms)
581
+  (0.1ms) rollback transaction
582
+  (0.1ms) begin transaction
583
+ ----------------------------------------------------------------
584
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
585
+ ----------------------------------------------------------------
586
+ Processing by MessagesController#show as HTML
587
+ Rendered messages/show.html.erb within layouts/application (1.2ms)
588
+ Rendered shared/_flash_messages.html.haml (2.4ms)
589
+ Completed 200 OK in 21ms (Views: 20.9ms | ActiveRecord: 0.0ms)
590
+  (0.1ms) rollback transaction
591
+  (0.1ms) begin transaction
592
+ ------------------------------------------------------
593
+ BootstrapHelperTest: test_returns_class_for_flash_type
594
+ ------------------------------------------------------
595
+  (0.0ms) rollback transaction
596
+  (0.1ms) begin transaction
597
+ ----------------------------------------------------------------
598
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
599
+ ----------------------------------------------------------------
600
+ Processing by MessagesController#show as HTML
601
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
602
+ Rendered shared/_flash_messages.html.haml (2.7ms)
603
+ Completed 200 OK in 20ms (Views: 19.2ms | ActiveRecord: 0.0ms)
604
+  (0.1ms) rollback transaction
605
+  (0.1ms) begin transaction
606
+ ----------------------------------------------------------------
607
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
608
+ ----------------------------------------------------------------
609
+ Processing by MessagesController#show as HTML
610
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
611
+ Rendered shared/_flash_messages.html.haml (3.4ms)
612
+ Completed 200 OK in 21ms (Views: 21.1ms | ActiveRecord: 0.0ms)
613
+  (0.1ms) rollback transaction
614
+  (0.1ms) begin transaction
615
+ ------------------------------------------------------
616
+ BootstrapHelperTest: test_returns_class_for_flash_type
617
+ ------------------------------------------------------
618
+  (0.0ms) rollback transaction
619
+  (0.1ms) begin transaction
620
+ ----------------------------------------------------------------
621
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
622
+ ----------------------------------------------------------------
623
+ Processing by MessagesController#show as HTML
624
+ Rendered messages/show.html.erb within layouts/application (1.2ms)
625
+ Rendered shared/_flash_messages.html.haml (2.3ms)
626
+ Completed 200 OK in 20ms (Views: 19.4ms | ActiveRecord: 0.0ms)
627
+  (0.1ms) rollback transaction
628
+  (0.1ms) begin transaction
629
+ ----------------------------------------------------------------
630
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
631
+ ----------------------------------------------------------------
632
+ Processing by MessagesController#show as HTML
633
+ Rendered messages/show.html.erb within layouts/application (1.2ms)
634
+ Rendered shared/_flash_messages.html.haml (2.1ms)
635
+ Completed 200 OK in 20ms (Views: 19.9ms | ActiveRecord: 0.0ms)
636
+  (0.1ms) rollback transaction
637
+  (0.1ms) begin transaction
638
+ ------------------------------------------------------
639
+ BootstrapHelperTest: test_returns_class_for_flash_type
640
+ ------------------------------------------------------
641
+  (0.0ms) rollback transaction
642
+  (0.1ms) begin transaction
643
+ ------------------------------------------------------
644
+ BootstrapHelperTest: test_returns_class_for_flash_type
645
+ ------------------------------------------------------
646
+  (0.0ms) rollback transaction
647
+  (0.1ms) begin transaction
648
+ ------------------------------------------------------
649
+ BootstrapHelperTest: test_returns_class_for_flash_type
650
+ ------------------------------------------------------
651
+  (0.0ms) rollback transaction
652
+  (0.1ms) begin transaction
653
+ ----------------------------------------------------------------
654
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
655
+ ----------------------------------------------------------------
656
+ Processing by MessagesController#show as HTML
657
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
658
+ Rendered shared/_flash_messages.html.haml (2.9ms)
659
+ Completed 200 OK in 20ms (Views: 19.6ms | ActiveRecord: 0.0ms)
660
+  (0.1ms) rollback transaction
661
+  (0.1ms) begin transaction
662
+ ----------------------------------------------------------------
663
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
664
+ ----------------------------------------------------------------
665
+ Processing by MessagesController#show as HTML
666
+ Rendered messages/show.html.erb within layouts/application (1.0ms)
667
+ Rendered shared/_flash_messages.html.haml (13.9ms)
668
+ Completed 500 Internal Server Error in 30ms
669
+  (0.1ms) rollback transaction
670
+  (0.0ms) begin transaction
671
+ ------------------------------------------------------
672
+ BootstrapHelperTest: test_returns_class_for_flash_type
673
+ ------------------------------------------------------
674
+  (0.0ms) rollback transaction
675
+  (0.1ms) begin transaction
676
+ ------------------------------------------------------
677
+ BootstrapHelperTest: test_returns_class_for_flash_type
678
+ ------------------------------------------------------
679
+  (0.0ms) rollback transaction
680
+  (0.0ms) begin transaction
681
+ ----------------------------------------------------------------
682
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
683
+ ----------------------------------------------------------------
684
+ Processing by MessagesController#show as HTML
685
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
686
+ Rendered shared/_flash_messages.html.haml (2.7ms)
687
+ Completed 200 OK in 22ms (Views: 21.8ms | ActiveRecord: 0.0ms)
688
+  (0.1ms) rollback transaction
689
+  (0.1ms) begin transaction
690
+ ------------------------------------------------------
691
+ BootstrapHelperTest: test_returns_class_for_flash_type
692
+ ------------------------------------------------------
693
+  (0.0ms) rollback transaction
694
+  (0.0ms) begin transaction
695
+ ----------------------------------------------------------------
696
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
697
+ ----------------------------------------------------------------
698
+ Processing by MessagesController#show as HTML
699
+ Rendered messages/show.html.erb within layouts/application (1.0ms)
700
+ Rendered shared/_flash_messages.html.haml (3.0ms)
701
+ Completed 200 OK in 21ms (Views: 20.9ms | ActiveRecord: 0.0ms)
702
+  (0.1ms) rollback transaction
703
+  (0.1ms) begin transaction
704
+ ------------------------------------------------------
705
+ BootstrapHelperTest: test_returns_class_for_flash_type
706
+ ------------------------------------------------------
707
+  (0.0ms) rollback transaction
708
+  (0.0ms) begin transaction
709
+ ----------------------------------------------------------------
710
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
711
+ ----------------------------------------------------------------
712
+ Processing by MessagesController#show as HTML
713
+ Rendered messages/show.html.erb within layouts/application (1.0ms)
714
+ Rendered shared/_flash_messages.html.haml (2.1ms)
715
+ Completed 200 OK in 18ms (Views: 17.5ms | ActiveRecord: 0.0ms)
716
+  (0.1ms) rollback transaction
717
+  (0.1ms) begin transaction
718
+ ----------------------------------------------------------------
719
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
720
+ ----------------------------------------------------------------
721
+ Processing by MessagesController#show as HTML
722
+ Rendered messages/show.html.erb within layouts/application (1.3ms)
723
+ Rendered shared/_flash_messages.html.haml (10.8ms)
724
+ Completed 500 Internal Server Error in 34ms
725
+  (0.1ms) rollback transaction
726
+  (0.0ms) begin transaction
727
+ ------------------------------------------------------
728
+ BootstrapHelperTest: test_returns_class_for_flash_type
729
+ ------------------------------------------------------
730
+  (0.0ms) rollback transaction
731
+  (0.1ms) begin transaction
732
+ ----------------------------------------------------------------
733
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
734
+ ----------------------------------------------------------------
735
+ Processing by MessagesController#show as HTML
736
+ Rendered messages/show.html.erb within layouts/application (1.0ms)
737
+ Rendered shared/_flash_messages.html.haml (3.2ms)
738
+ Completed 200 OK in 21ms (Views: 20.1ms | ActiveRecord: 0.0ms)
739
+  (0.1ms) rollback transaction
740
+  (0.1ms) begin transaction
741
+ ------------------------------------------------------
742
+ BootstrapHelperTest: test_returns_class_for_flash_type
743
+ ------------------------------------------------------
744
+  (0.1ms) rollback transaction
745
+  (0.1ms) begin transaction
746
+ ------------------------------------------------------
747
+ BootstrapHelperTest: test_returns_class_for_flash_type
748
+ ------------------------------------------------------
749
+  (0.0ms) rollback transaction
750
+  (0.1ms) begin transaction
751
+ ----------------------------------------------------------------
752
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
753
+ ----------------------------------------------------------------
754
+ Processing by MessagesController#show as HTML
755
+ Rendered messages/show.html.erb within layouts/application (1.0ms)
756
+ Rendered shared/_flash_messages.html.haml (2.3ms)
757
+ Completed 200 OK in 22ms (Views: 21.9ms | ActiveRecord: 0.0ms)
758
+  (0.1ms) rollback transaction
759
+  (0.1ms) begin transaction
760
+ ------------------------------------------------------
761
+ BootstrapHelperTest: test_returns_class_for_flash_type
762
+ ------------------------------------------------------
763
+  (0.0ms) rollback transaction
764
+  (0.0ms) begin transaction
765
+ ----------------------------------------------------------------
766
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
767
+ ----------------------------------------------------------------
768
+ Processing by MessagesController#show as HTML
769
+ Rendered messages/show.html.erb within layouts/application (1.0ms)
770
+ Rendered shared/_flash_messages.html.haml (2.0ms)
771
+ Completed 200 OK in 19ms (Views: 18.3ms | ActiveRecord: 0.0ms)
772
+  (0.1ms) rollback transaction
773
+  (0.1ms) begin transaction
774
+ ----------------------------------------------------------------
775
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
776
+ ----------------------------------------------------------------
777
+ Processing by MessagesController#show as HTML
778
+ Rendered messages/show.html.erb within layouts/application (1.1ms)
779
+ Rendered shared/_flash_messages.html.haml (2.2ms)
780
+ Completed 200 OK in 20ms (Views: 20.2ms | ActiveRecord: 0.0ms)
781
+  (0.1ms) rollback transaction
782
+  (0.1ms) begin transaction
783
+ ------------------------------------------------------
784
+ BootstrapHelperTest: test_returns_class_for_flash_type
785
+ ------------------------------------------------------
786
+  (0.0ms) rollback transaction
787
+  (0.1ms) begin transaction
788
+ ------------------------------------------------------
789
+ BootstrapHelperTest: test_returns_class_for_flash_type
790
+ ------------------------------------------------------
791
+  (0.0ms) rollback transaction
792
+  (0.0ms) begin transaction
793
+ ----------------------------------------------------------------
794
+ MessagesControllerTest: test_should_show_bootstrap_flash_message
795
+ ----------------------------------------------------------------
796
+ Processing by MessagesController#show as HTML
797
+ Rendered messages/show.html.erb within layouts/application (1.2ms)
798
+ Rendered shared/_flash_messages.html.haml (2.2ms)
799
+ Completed 200 OK in 21ms (Views: 21.0ms | ActiveRecord: 0.0ms)
800
+  (0.1ms) rollback transaction