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.
- checksums.yaml +7 -0
- data/MIT-LICENSE +20 -0
- data/Rakefile +32 -0
- data/app/views/shared/_flash_messages.html.haml +6 -0
- data/lib/application_helper.rb +5 -0
- data/lib/bootstrap_helper.rb +19 -0
- data/lib/bootstrap_rails_flash.rb +6 -0
- data/lib/generators/bootstrap_rails_flash/install_generator.rb +16 -0
- data/test/controllers/messages_controller_test.rb +10 -0
- data/test/dummy/README.rdoc +28 -0
- data/test/dummy/Rakefile +6 -0
- data/test/dummy/app/assets/javascripts/application.js +13 -0
- data/test/dummy/app/assets/javascripts/messages.js +2 -0
- data/test/dummy/app/assets/stylesheets/application.css +15 -0
- data/test/dummy/app/assets/stylesheets/messages.css +4 -0
- data/test/dummy/app/controllers/application_controller.rb +6 -0
- data/test/dummy/app/controllers/messages_controller.rb +10 -0
- data/test/dummy/app/helpers/application_helper.rb +3 -0
- data/test/dummy/app/helpers/messages_helper.rb +2 -0
- data/test/dummy/app/views/layouts/application.html.erb +15 -0
- data/test/dummy/app/views/messages/show.html.erb +0 -0
- data/test/dummy/app/views/shared/_flash_messages.html.haml +6 -0
- data/test/dummy/bin/bundle +3 -0
- data/test/dummy/bin/rails +4 -0
- data/test/dummy/bin/rake +4 -0
- data/test/dummy/config.ru +4 -0
- data/test/dummy/config/application.rb +23 -0
- data/test/dummy/config/boot.rb +5 -0
- data/test/dummy/config/database.yml +25 -0
- data/test/dummy/config/environment.rb +5 -0
- data/test/dummy/config/environments/development.rb +37 -0
- data/test/dummy/config/environments/production.rb +83 -0
- data/test/dummy/config/environments/test.rb +39 -0
- data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
- data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
- data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
- data/test/dummy/config/initializers/inflections.rb +16 -0
- data/test/dummy/config/initializers/mime_types.rb +4 -0
- data/test/dummy/config/initializers/session_store.rb +3 -0
- data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
- data/test/dummy/config/locales/en.yml +23 -0
- data/test/dummy/config/routes.rb +58 -0
- data/test/dummy/config/secrets.yml +22 -0
- data/test/dummy/db/test.sqlite3 +0 -0
- data/test/dummy/log/development.log +0 -0
- data/test/dummy/log/test.log +800 -0
- data/test/dummy/public/404.html +67 -0
- data/test/dummy/public/422.html +67 -0
- data/test/dummy/public/500.html +66 -0
- data/test/dummy/public/favicon.ico +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/5ee5f7991cf019a63fddbff773165546 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/75c44f500e9640bb837517858e4e4b55 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/88a727f64606316cf6a31e02023ddc52 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/d91b21f330b02be1b32de21393a7ba5b +0 -0
- data/test/dummy/tmp/cache/assets/test/sprockets/f7cbd26ba1d28d48de824f0e94586655 +0 -0
- data/test/helpers/bootstrap_helper_test.rb +10 -0
- data/test/test_helper.rb +15 -0
- 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,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,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
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2
|
+
-----------------------------------
|
3
|
+
BootstrapRailsFlashTest: test_truth
|
4
|
+
-----------------------------------
|
5
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
6
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
7
|
+
-----------------------------------
|
8
|
+
BootstrapRailsFlashTest: test_truth
|
9
|
+
-----------------------------------
|
10
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
11
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
12
|
+
-----------------------------------
|
13
|
+
BootstrapRailsFlashTest: test_fails
|
14
|
+
-----------------------------------
|
15
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
16
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
17
|
+
-----------------------------------------
|
18
|
+
BootstrapRailsFlashTest: test_fails_again
|
19
|
+
-----------------------------------------
|
20
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
21
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
22
|
+
-----------------------------------
|
23
|
+
BootstrapRailsFlashTest: test_truth
|
24
|
+
-----------------------------------
|
25
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
26
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
27
|
+
-----------------------------------
|
28
|
+
BootstrapRailsFlashTest: test_fails
|
29
|
+
-----------------------------------
|
30
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
31
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
32
|
+
-----------------------------------------
|
33
|
+
BootstrapRailsFlashTest: test_fails_again
|
34
|
+
-----------------------------------------
|
35
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
36
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
37
|
+
-----------------------------------
|
38
|
+
BootstrapRailsFlashTest: test_truth
|
39
|
+
-----------------------------------
|
40
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
41
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
42
|
+
-----------------------------------------
|
43
|
+
BootstrapRailsFlashTest: test_fails_again
|
44
|
+
-----------------------------------------
|
45
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
46
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
47
|
+
-----------------------------------------
|
48
|
+
BootstrapRailsFlashTest: test_fails_again
|
49
|
+
-----------------------------------------
|
50
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
51
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
52
|
+
---------------------------------------------------------
|
53
|
+
BootstrapRailsFlashTest: test_generator_copies_view_files
|
54
|
+
---------------------------------------------------------
|
55
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
56
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
57
|
+
---------------------------------------------------------
|
58
|
+
BootstrapRailsFlashTest: test_generator_copies_view_files
|
59
|
+
---------------------------------------------------------
|
60
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
61
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
62
|
+
---------------------------------------------------------
|
63
|
+
BootstrapRailsFlashTest: test_generator_copies_view_files
|
64
|
+
---------------------------------------------------------
|
65
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
66
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
67
|
+
---------------------------------------------------------------
|
68
|
+
BootstrapRailsFlashTest: test_user_sees_bootstrap_flash_message
|
69
|
+
---------------------------------------------------------------
|
70
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
71
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
79
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
80
|
+
----------------------------------------------
|
81
|
+
MessagesControllerTest: test_should_show_flash
|
82
|
+
----------------------------------------------
|
83
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
84
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
92
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
93
|
+
----------------------------------------------
|
94
|
+
MessagesControllerTest: test_should_show_flash
|
95
|
+
----------------------------------------------
|
96
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
97
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
105
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
106
|
+
----------------------------------------------
|
107
|
+
MessagesControllerTest: test_should_show_flash
|
108
|
+
----------------------------------------------
|
109
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
110
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
118
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
126
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
134
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
142
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
150
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
158
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
166
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
174
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
182
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
190
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
191
|
+
------------------------------------------------------
|
192
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
193
|
+
------------------------------------------------------
|
194
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
195
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
196
|
+
------------------------------------------------------
|
197
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
198
|
+
------------------------------------------------------
|
199
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
200
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
201
|
+
------------------------------------------------------
|
202
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
203
|
+
------------------------------------------------------
|
204
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
205
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
206
|
+
------------------------------------------------------
|
207
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
208
|
+
------------------------------------------------------
|
209
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
210
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
218
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
219
|
+
------------------------------------------------------
|
220
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
221
|
+
------------------------------------------------------
|
222
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
223
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
224
|
+
------------------------------------------------------
|
225
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
226
|
+
------------------------------------------------------
|
227
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
228
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
236
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
244
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
252
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
260
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
261
|
+
------------------------------------------------------
|
262
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
263
|
+
------------------------------------------------------
|
264
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
265
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
266
|
+
------------------------------------------------------
|
267
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
268
|
+
------------------------------------------------------
|
269
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
270
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
278
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
279
|
+
------------------------------------------------------
|
280
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
281
|
+
------------------------------------------------------
|
282
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
283
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
291
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
299
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
300
|
+
------------------------------------------------------
|
301
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
302
|
+
------------------------------------------------------
|
303
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
304
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
313
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
314
|
+
------------------------------------------------------
|
315
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
316
|
+
------------------------------------------------------
|
317
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
318
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
319
|
+
------------------------------------------------------
|
320
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
321
|
+
------------------------------------------------------
|
322
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
323
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
332
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
341
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
342
|
+
------------------------------------------------------
|
343
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
344
|
+
------------------------------------------------------
|
345
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
346
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
347
|
+
------------------------------------------------------
|
348
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
349
|
+
------------------------------------------------------
|
350
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
351
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
352
|
+
------------------------------------------------------
|
353
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
354
|
+
------------------------------------------------------
|
355
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
356
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
357
|
+
------------------------------------------------------
|
358
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
359
|
+
------------------------------------------------------
|
360
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
361
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
362
|
+
------------------------------------------------------
|
363
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
364
|
+
------------------------------------------------------
|
365
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
366
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
367
|
+
------------------------------------------------------
|
368
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
369
|
+
------------------------------------------------------
|
370
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
371
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
380
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
381
|
+
------------------------------------------------------
|
382
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
383
|
+
------------------------------------------------------
|
384
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
385
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
386
|
+
------------------------------------------------------
|
387
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
388
|
+
------------------------------------------------------
|
389
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
390
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
391
|
+
------------------------------------------------------
|
392
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
393
|
+
------------------------------------------------------
|
394
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
395
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
404
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
405
|
+
------------------------------------------------------
|
406
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
407
|
+
------------------------------------------------------
|
408
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
409
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
410
|
+
------------------------------------------------------
|
411
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
412
|
+
------------------------------------------------------
|
413
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
414
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
415
|
+
------------------------------------------------------
|
416
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
417
|
+
------------------------------------------------------
|
418
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
419
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
428
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
429
|
+
------------------------------------------------------
|
430
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
431
|
+
------------------------------------------------------
|
432
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
433
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
442
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
443
|
+
------------------------------------------------------
|
444
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
445
|
+
------------------------------------------------------
|
446
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
447
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
456
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
457
|
+
------------------------------------------------------
|
458
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
459
|
+
------------------------------------------------------
|
460
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
461
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
470
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
471
|
+
------------------------------------------------------
|
472
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
473
|
+
------------------------------------------------------
|
474
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
475
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
484
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
485
|
+
------------------------------------------------------
|
486
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
487
|
+
------------------------------------------------------
|
488
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
489
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
498
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
507
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
508
|
+
------------------------------------------------------
|
509
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
510
|
+
------------------------------------------------------
|
511
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
512
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
521
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
522
|
+
------------------------------------------------------
|
523
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
524
|
+
------------------------------------------------------
|
525
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
526
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
527
|
+
------------------------------------------------------
|
528
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
529
|
+
------------------------------------------------------
|
530
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
531
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
540
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
549
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
550
|
+
------------------------------------------------------
|
551
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
552
|
+
------------------------------------------------------
|
553
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
554
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
563
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
564
|
+
------------------------------------------------------
|
565
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
566
|
+
------------------------------------------------------
|
567
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
568
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
569
|
+
------------------------------------------------------
|
570
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
571
|
+
------------------------------------------------------
|
572
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
573
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
582
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
591
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
592
|
+
------------------------------------------------------
|
593
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
594
|
+
------------------------------------------------------
|
595
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
596
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
605
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
614
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
615
|
+
------------------------------------------------------
|
616
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
617
|
+
------------------------------------------------------
|
618
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
619
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
628
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
637
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
638
|
+
------------------------------------------------------
|
639
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
640
|
+
------------------------------------------------------
|
641
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
642
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
643
|
+
------------------------------------------------------
|
644
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
645
|
+
------------------------------------------------------
|
646
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
647
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
648
|
+
------------------------------------------------------
|
649
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
650
|
+
------------------------------------------------------
|
651
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
652
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
661
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
670
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
671
|
+
------------------------------------------------------
|
672
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
673
|
+
------------------------------------------------------
|
674
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
675
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
676
|
+
------------------------------------------------------
|
677
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
678
|
+
------------------------------------------------------
|
679
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
680
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
689
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
690
|
+
------------------------------------------------------
|
691
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
692
|
+
------------------------------------------------------
|
693
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
694
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
703
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
704
|
+
------------------------------------------------------
|
705
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
706
|
+
------------------------------------------------------
|
707
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
708
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
717
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
726
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
727
|
+
------------------------------------------------------
|
728
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
729
|
+
------------------------------------------------------
|
730
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
731
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
740
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
741
|
+
------------------------------------------------------
|
742
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
743
|
+
------------------------------------------------------
|
744
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
745
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
746
|
+
------------------------------------------------------
|
747
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
748
|
+
------------------------------------------------------
|
749
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
750
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
759
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
760
|
+
------------------------------------------------------
|
761
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
762
|
+
------------------------------------------------------
|
763
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
764
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
773
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
782
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
783
|
+
------------------------------------------------------
|
784
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
785
|
+
------------------------------------------------------
|
786
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
787
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
788
|
+
------------------------------------------------------
|
789
|
+
BootstrapHelperTest: test_returns_class_for_flash_type
|
790
|
+
------------------------------------------------------
|
791
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
792
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
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
|
+
[1m[35m (0.1ms)[0m rollback transaction
|