bootstrap-rails-flash 0.1.2 → 0.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/bootstrap_rails_flash.rb +3 -2
- data/lib/{application_helper.rb → bootstrap_rails_flash/application_helper.rb} +1 -1
- data/lib/bootstrap_rails_flash/bootstrap_helper.rb +21 -0
- data/test/dummy/db/development.sqlite3 +0 -0
- data/test/dummy/log/development.log +192 -0
- data/test/dummy/log/test.log +21 -690
- data/test/dummy/tmp/cache/assets/development/sprockets/13fe41fee1fe35b49d145bcc06610705 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/166b59364f163b12a7bdd7b1ebaba578 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/2f5173deea6c795b8fdde723bb4b63af +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/357970feca3ac29060c1e3861e2c0953 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/5ee5f7991cf019a63fddbff773165546 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/749438982468e8163222cb076926aeef +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/75c44f500e9640bb837517858e4e4b55 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/88a727f64606316cf6a31e02023ddc52 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/cffd775d018f68ce5dba1ee0d951a994 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d771ace226fc8215a3572e0aa35bb0d6 +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/d91b21f330b02be1b32de21393a7ba5b +0 -0
- data/test/dummy/tmp/cache/assets/development/sprockets/f7cbd26ba1d28d48de824f0e94586655 +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 +1 -1
- metadata +49 -5
- data/lib/bootstrap_helper.rb +0 -19
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 96285187efa11baf1487fc064399457f06158d10
|
4
|
+
data.tar.gz: 0e01b478caa1f1b08006632625e515c7f34c2b38
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce71d189d72c9a6c4fdc9b995aafc5b7a6c5e5f7086bb5a968826ce36582cd62dbb0cde36ca3dea29dd73a6899a28c3ecd98a7a6b6517f237a031869f0a29699
|
7
|
+
data.tar.gz: 22a55ae50cff2c40aef92ec61b5fb2c02a588e79f33fc7a5527ea45a74bcce18ce884a8994b043219e2ea737068ac2c8d61e573d2f7cc33e984e082298cd823b
|
@@ -0,0 +1,21 @@
|
|
1
|
+
module BootstrapRailsFlash
|
2
|
+
module BootstrapHelper
|
3
|
+
|
4
|
+
# Return Bootstrap class type for flash type
|
5
|
+
def bootstrap_class_for(flash_type)
|
6
|
+
case flash_type
|
7
|
+
when 'success'
|
8
|
+
'alert-success' # Green
|
9
|
+
when 'error'
|
10
|
+
'alert-danger' # Red
|
11
|
+
when 'alert'
|
12
|
+
'alert-warning' # Yellow
|
13
|
+
when 'notice'
|
14
|
+
'alert-info' # Blue
|
15
|
+
else
|
16
|
+
flash_type.to_s
|
17
|
+
end
|
18
|
+
end
|
19
|
+
|
20
|
+
end
|
21
|
+
end
|
File without changes
|
@@ -0,0 +1,192 @@
|
|
1
|
+
|
2
|
+
|
3
|
+
Started GET "/messages" for 127.0.0.1 at 2014-05-26 21:24:56 +0200
|
4
|
+
|
5
|
+
ActionController::RoutingError (No route matches [GET] "/messages"):
|
6
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/debug_exceptions.rb:21:in `call'
|
7
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/show_exceptions.rb:30:in `call'
|
8
|
+
railties (4.1.1) lib/rails/rack/logger.rb:38:in `call_app'
|
9
|
+
railties (4.1.1) lib/rails/rack/logger.rb:20:in `block in call'
|
10
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `block in tagged'
|
11
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:26:in `tagged'
|
12
|
+
activesupport (4.1.1) lib/active_support/tagged_logging.rb:68:in `tagged'
|
13
|
+
railties (4.1.1) lib/rails/rack/logger.rb:20:in `call'
|
14
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/request_id.rb:21:in `call'
|
15
|
+
rack (1.5.2) lib/rack/methodoverride.rb:21:in `call'
|
16
|
+
rack (1.5.2) lib/rack/runtime.rb:17:in `call'
|
17
|
+
activesupport (4.1.1) lib/active_support/cache/strategy/local_cache_middleware.rb:26:in `call'
|
18
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
19
|
+
actionpack (4.1.1) lib/action_dispatch/middleware/static.rb:64:in `call'
|
20
|
+
rack (1.5.2) lib/rack/sendfile.rb:112:in `call'
|
21
|
+
railties (4.1.1) lib/rails/engine.rb:514:in `call'
|
22
|
+
railties (4.1.1) lib/rails/application.rb:144:in `call'
|
23
|
+
rack (1.5.2) lib/rack/lock.rb:17:in `call'
|
24
|
+
rack (1.5.2) lib/rack/content_length.rb:14:in `call'
|
25
|
+
rack (1.5.2) lib/rack/handler/webrick.rb:60:in `service'
|
26
|
+
/Users/georg/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:138:in `service'
|
27
|
+
/Users/georg/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/httpserver.rb:94:in `run'
|
28
|
+
/Users/georg/.rvm/rubies/ruby-2.1.0/lib/ruby/2.1.0/webrick/server.rb:295:in `block in start_thread'
|
29
|
+
|
30
|
+
|
31
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
32
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_route.html.erb (1.1ms)
|
33
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/routes/_table.html.erb (4.1ms)
|
34
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/routing_error.html.erb within rescues/layout (25.4ms)
|
35
|
+
|
36
|
+
|
37
|
+
Started GET "/messages/show" for 127.0.0.1 at 2014-05-26 21:25:06 +0200
|
38
|
+
Processing by MessagesController#show as HTML
|
39
|
+
Rendered messages/show.html.erb within layouts/application (0.3ms)
|
40
|
+
Rendered shared/_flash_messages.html.haml (2.4ms)
|
41
|
+
Completed 200 OK in 36ms (Views: 28.2ms | ActiveRecord: 0.0ms)
|
42
|
+
|
43
|
+
|
44
|
+
Started GET "/assets/messages.js?body=1" for 127.0.0.1 at 2014-05-26 21:25:06 +0200
|
45
|
+
|
46
|
+
|
47
|
+
Started GET "/assets/messages.css?body=1" for 127.0.0.1 at 2014-05-26 21:25:06 +0200
|
48
|
+
|
49
|
+
|
50
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-26 21:25:06 +0200
|
51
|
+
|
52
|
+
|
53
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-26 21:25:06 +0200
|
54
|
+
|
55
|
+
|
56
|
+
Started GET "/messages/show" for 127.0.0.1 at 2014-05-26 21:48:17 +0200
|
57
|
+
Processing by MessagesController#show as HTML
|
58
|
+
Rendered messages/show.html.erb within layouts/application (1.1ms)
|
59
|
+
Rendered shared/_flash_messages.html.haml (13.1ms)
|
60
|
+
Completed 500 Internal Server Error in 47ms
|
61
|
+
|
62
|
+
ActionView::Template::Error (undefined method `bootstrap_class_for' for #<#<Class:0x00000104e03ad0>:0x00000104e02b30>):
|
63
|
+
1: #flash
|
64
|
+
2: - flash.map do |type, message|
|
65
|
+
3: %div{:class => "alert #{bootstrap_class_for(type)} alert-dismissable fade in"}
|
66
|
+
4: %button.close{"aria-hidden" => "true", "data-dismiss" => "alert", :type => "button"} ×
|
67
|
+
5: = message
|
68
|
+
6: - flash.clear
|
69
|
+
app/views/shared/_flash_messages.html.haml:3:in `block in _app_views_shared__flash_messages_html_haml___2116426357296620875_2187191420'
|
70
|
+
app/views/shared/_flash_messages.html.haml:2:in `map'
|
71
|
+
app/views/shared/_flash_messages.html.haml:2:in `_app_views_shared__flash_messages_html_haml___2116426357296620875_2187191420'
|
72
|
+
app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__622916679334068755_2188201060'
|
73
|
+
|
74
|
+
|
75
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
76
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
77
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (12.3ms)
|
78
|
+
|
79
|
+
|
80
|
+
Started GET "/messages/show" for 127.0.0.1 at 2014-05-26 21:48:58 +0200
|
81
|
+
Processing by MessagesController#show as HTML
|
82
|
+
Rendered messages/show.html.erb within layouts/application (0.1ms)
|
83
|
+
Rendered shared/_flash_messages.html.haml (7.1ms)
|
84
|
+
Completed 500 Internal Server Error in 12ms
|
85
|
+
|
86
|
+
ActionView::Template::Error (undefined method `bootstrap_class_for' for #<#<Class:0x000001037f36f0>:0x000001037f2ca0>):
|
87
|
+
1: #flash
|
88
|
+
2: - flash.map do |type, message|
|
89
|
+
3: %div{:class => "alert #{bootstrap_class_for(type)} alert-dismissable fade in"}
|
90
|
+
4: %button.close{"aria-hidden" => "true", "data-dismiss" => "alert", :type => "button"} ×
|
91
|
+
5: = message
|
92
|
+
6: - flash.clear
|
93
|
+
app/views/shared/_flash_messages.html.haml:3:in `block in _app_views_shared__flash_messages_html_haml___2116426357296620875_2187191420'
|
94
|
+
app/views/shared/_flash_messages.html.haml:2:in `map'
|
95
|
+
app/views/shared/_flash_messages.html.haml:2:in `_app_views_shared__flash_messages_html_haml___2116426357296620875_2187191420'
|
96
|
+
app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__622916679334068755_2188201060'
|
97
|
+
|
98
|
+
|
99
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.2ms)
|
100
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
101
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.3ms)
|
102
|
+
|
103
|
+
|
104
|
+
Started GET "/messages/show" for 127.0.0.1 at 2014-05-26 21:49:18 +0200
|
105
|
+
Processing by MessagesController#show as HTML
|
106
|
+
Rendered messages/show.html.erb within layouts/application (0.1ms)
|
107
|
+
Rendered shared/_flash_messages.html.haml (7.1ms)
|
108
|
+
Completed 500 Internal Server Error in 13ms
|
109
|
+
|
110
|
+
ActionView::Template::Error (undefined method `bootstrap_class_for' for #<#<Class:0x00000101e42d50>:0x00000101e41bd0>):
|
111
|
+
1: #flash
|
112
|
+
2: - flash.map do |type, message|
|
113
|
+
3: %div{:class => "alert #{bootstrap_class_for(type)} alert-dismissable fade in"}
|
114
|
+
4: %button.close{"aria-hidden" => "true", "data-dismiss" => "alert", :type => "button"} ×
|
115
|
+
5: = message
|
116
|
+
6: - flash.clear
|
117
|
+
app/views/shared/_flash_messages.html.haml:3:in `block in _app_views_shared__flash_messages_html_haml___2116426357296620875_2187191420'
|
118
|
+
app/views/shared/_flash_messages.html.haml:2:in `map'
|
119
|
+
app/views/shared/_flash_messages.html.haml:2:in `_app_views_shared__flash_messages_html_haml___2116426357296620875_2187191420'
|
120
|
+
app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__622916679334068755_2188201060'
|
121
|
+
|
122
|
+
|
123
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.3ms)
|
124
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (0.9ms)
|
125
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (9.7ms)
|
126
|
+
|
127
|
+
|
128
|
+
Started GET "/messages/show" for 127.0.0.1 at 2014-05-26 21:49:19 +0200
|
129
|
+
Processing by MessagesController#show as HTML
|
130
|
+
Rendered messages/show.html.erb within layouts/application (0.1ms)
|
131
|
+
Rendered shared/_flash_messages.html.haml (9.1ms)
|
132
|
+
Completed 500 Internal Server Error in 15ms
|
133
|
+
|
134
|
+
ActionView::Template::Error (undefined method `bootstrap_class_for' for #<#<Class:0x00000101e42d50>:0x00000103436698>):
|
135
|
+
1: #flash
|
136
|
+
2: - flash.map do |type, message|
|
137
|
+
3: %div{:class => "alert #{bootstrap_class_for(type)} alert-dismissable fade in"}
|
138
|
+
4: %button.close{"aria-hidden" => "true", "data-dismiss" => "alert", :type => "button"} ×
|
139
|
+
5: = message
|
140
|
+
6: - flash.clear
|
141
|
+
app/views/shared/_flash_messages.html.haml:3:in `block in _app_views_shared__flash_messages_html_haml___2116426357296620875_2187191420'
|
142
|
+
app/views/shared/_flash_messages.html.haml:2:in `map'
|
143
|
+
app/views/shared/_flash_messages.html.haml:2:in `_app_views_shared__flash_messages_html_haml___2116426357296620875_2187191420'
|
144
|
+
app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__622916679334068755_2188201060'
|
145
|
+
|
146
|
+
|
147
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (2.5ms)
|
148
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.1ms)
|
149
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (13.3ms)
|
150
|
+
|
151
|
+
|
152
|
+
Started GET "/messages/show" for 127.0.0.1 at 2014-05-26 21:49:44 +0200
|
153
|
+
Processing by MessagesController#show as HTML
|
154
|
+
Rendered messages/show.html.erb within layouts/application (0.0ms)
|
155
|
+
Rendered shared/_flash_messages.html.haml (0.3ms)
|
156
|
+
Completed 200 OK in 4ms (Views: 3.7ms | ActiveRecord: 0.0ms)
|
157
|
+
|
158
|
+
|
159
|
+
Started GET "/assets/application.js?body=1" for 127.0.0.1 at 2014-05-26 21:49:44 +0200
|
160
|
+
|
161
|
+
|
162
|
+
Started GET "/assets/messages.js?body=1" for 127.0.0.1 at 2014-05-26 21:49:44 +0200
|
163
|
+
|
164
|
+
|
165
|
+
Started GET "/assets/messages.css?body=1" for 127.0.0.1 at 2014-05-26 21:49:44 +0200
|
166
|
+
|
167
|
+
|
168
|
+
Started GET "/assets/application.css?body=1" for 127.0.0.1 at 2014-05-26 21:49:44 +0200
|
169
|
+
|
170
|
+
|
171
|
+
Started GET "/messages/show" for 127.0.0.1 at 2014-05-26 21:50:08 +0200
|
172
|
+
Processing by MessagesController#show as HTML
|
173
|
+
Rendered messages/show.html.erb within layouts/application (0.0ms)
|
174
|
+
Rendered shared/_flash_messages.html.haml (7.0ms)
|
175
|
+
Completed 500 Internal Server Error in 11ms
|
176
|
+
|
177
|
+
ActionView::Template::Error (undefined method `bootstrap_class_for' for #<#<Class:0x00000104c1ba88>:0x00000104c1ac78>):
|
178
|
+
1: #flash
|
179
|
+
2: - flash.map do |type, message|
|
180
|
+
3: %div{:class => "alert #{bootstrap_class_for(type)} alert-dismissable fade in"}
|
181
|
+
4: %button.close{"aria-hidden" => "true", "data-dismiss" => "alert", :type => "button"} ×
|
182
|
+
5: = message
|
183
|
+
6: - flash.clear
|
184
|
+
app/views/shared/_flash_messages.html.haml:3:in `block in _app_views_shared__flash_messages_html_haml___2116426357296620875_2187191420'
|
185
|
+
app/views/shared/_flash_messages.html.haml:2:in `map'
|
186
|
+
app/views/shared/_flash_messages.html.haml:2:in `_app_views_shared__flash_messages_html_haml___2116426357296620875_2187191420'
|
187
|
+
app/views/layouts/application.html.erb:10:in `_app_views_layouts_application_html_erb__622916679334068755_2188201060'
|
188
|
+
|
189
|
+
|
190
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_trace.html.erb (1.7ms)
|
191
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/_request_and_response.html.erb (1.0ms)
|
192
|
+
Rendered /Users/georg/.rvm/gems/ruby-2.1.0/gems/actionpack-4.1.1/lib/action_dispatch/middleware/templates/rescues/template_error.html.erb within rescues/layout (11.6ms)
|
data/test/dummy/log/test.log
CHANGED
@@ -1,485 +1,11 @@
|
|
1
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
2
|
----------------------------------------------------------------
|
449
3
|
MessagesControllerTest: test_should_show_bootstrap_flash_message
|
450
4
|
----------------------------------------------------------------
|
451
5
|
Processing by MessagesController#show as HTML
|
452
6
|
Rendered messages/show.html.erb within layouts/application (1.1ms)
|
453
|
-
Rendered shared/_flash_messages.html.haml (
|
454
|
-
Completed 200 OK in
|
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
|
7
|
+
Rendered shared/_flash_messages.html.haml (2.5ms)
|
8
|
+
Completed 200 OK in 30ms (Views: 29.6ms | ActiveRecord: 0.0ms)
|
483
9
|
[1m[35m (0.1ms)[0m rollback transaction
|
484
10
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
485
11
|
------------------------------------------------------
|
@@ -491,125 +17,28 @@ BootstrapHelperTest: test_returns_class_for_flash_type
|
|
491
17
|
MessagesControllerTest: test_should_show_bootstrap_flash_message
|
492
18
|
----------------------------------------------------------------
|
493
19
|
Processing by MessagesController#show as HTML
|
494
|
-
Rendered messages/show.html.erb within layouts/application (1.
|
495
|
-
Rendered shared/_flash_messages.html.haml (
|
496
|
-
Completed
|
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)
|
20
|
+
Rendered messages/show.html.erb within layouts/application (1.6ms)
|
21
|
+
Rendered shared/_flash_messages.html.haml (3.6ms)
|
22
|
+
Completed 200 OK in 30ms (Views: 29.6ms | ActiveRecord: 0.0ms)
|
506
23
|
[1m[35m (0.1ms)[0m rollback transaction
|
507
24
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
508
25
|
------------------------------------------------------
|
509
26
|
BootstrapHelperTest: test_returns_class_for_flash_type
|
510
27
|
------------------------------------------------------
|
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
28
|
[1m[35m (0.1ms)[0m rollback transaction
|
521
29
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
522
30
|
------------------------------------------------------
|
523
31
|
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
32
|
------------------------------------------------------
|
530
33
|
[1m[35m (0.0ms)[0m rollback transaction
|
531
34
|
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
532
35
|
----------------------------------------------------------------
|
533
36
|
MessagesControllerTest: test_should_show_bootstrap_flash_message
|
534
37
|
----------------------------------------------------------------
|
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
38
|
Processing by MessagesController#show as HTML
|
545
39
|
Rendered messages/show.html.erb within layouts/application (1.1ms)
|
546
40
|
Rendered shared/_flash_messages.html.haml (2.2ms)
|
547
|
-
Completed 200 OK in
|
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)
|
41
|
+
Completed 200 OK in 21ms (Views: 20.8ms | ActiveRecord: 0.0ms)
|
613
42
|
[1m[35m (0.1ms)[0m rollback transaction
|
614
43
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
615
44
|
------------------------------------------------------
|
@@ -621,9 +50,9 @@ BootstrapHelperTest: test_returns_class_for_flash_type
|
|
621
50
|
MessagesControllerTest: test_should_show_bootstrap_flash_message
|
622
51
|
----------------------------------------------------------------
|
623
52
|
Processing by MessagesController#show as HTML
|
624
|
-
Rendered messages/show.html.erb within layouts/application (
|
625
|
-
Rendered shared/_flash_messages.html.haml (
|
626
|
-
Completed
|
53
|
+
Rendered messages/show.html.erb within layouts/application (0.9ms)
|
54
|
+
Rendered shared/_flash_messages.html.haml (11.9ms)
|
55
|
+
Completed 500 Internal Server Error in 30ms
|
627
56
|
[1m[35m (0.1ms)[0m rollback transaction
|
628
57
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
629
58
|
----------------------------------------------------------------
|
@@ -631,75 +60,14 @@ MessagesControllerTest: test_should_show_bootstrap_flash_message
|
|
631
60
|
----------------------------------------------------------------
|
632
61
|
Processing by MessagesController#show as HTML
|
633
62
|
Rendered messages/show.html.erb within layouts/application (1.2ms)
|
634
|
-
Rendered shared/_flash_messages.html.haml (
|
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)
|
63
|
+
Rendered shared/_flash_messages.html.haml (11.0ms)
|
668
64
|
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
65
|
[1m[35m (0.1ms)[0m rollback transaction
|
689
66
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
690
67
|
------------------------------------------------------
|
691
68
|
BootstrapHelperTest: test_returns_class_for_flash_type
|
692
69
|
------------------------------------------------------
|
693
70
|
[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
71
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
704
72
|
------------------------------------------------------
|
705
73
|
BootstrapHelperTest: test_returns_class_for_flash_type
|
@@ -710,51 +78,18 @@ BootstrapHelperTest: test_returns_class_for_flash_type
|
|
710
78
|
MessagesControllerTest: test_should_show_bootstrap_flash_message
|
711
79
|
----------------------------------------------------------------
|
712
80
|
Processing by MessagesController#show as HTML
|
713
|
-
Rendered messages/show.html.erb within layouts/application (1.
|
714
|
-
Rendered shared/_flash_messages.html.haml (
|
715
|
-
Completed
|
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
|
-
------------------------------------------------------
|
81
|
+
Rendered messages/show.html.erb within layouts/application (1.7ms)
|
82
|
+
Rendered shared/_flash_messages.html.haml (11.1ms)
|
83
|
+
Completed 500 Internal Server Error in 30ms
|
744
84
|
[1m[35m (0.1ms)[0m rollback transaction
|
745
85
|
[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
86
|
----------------------------------------------------------------
|
752
87
|
MessagesControllerTest: test_should_show_bootstrap_flash_message
|
753
88
|
----------------------------------------------------------------
|
754
89
|
Processing by MessagesController#show as HTML
|
755
|
-
Rendered messages/show.html.erb within layouts/application (1.
|
756
|
-
Rendered shared/_flash_messages.html.haml (
|
757
|
-
Completed
|
90
|
+
Rendered messages/show.html.erb within layouts/application (1.9ms)
|
91
|
+
Rendered shared/_flash_messages.html.haml (16.3ms)
|
92
|
+
Completed 500 Internal Server Error in 39ms
|
758
93
|
[1m[35m (0.1ms)[0m rollback transaction
|
759
94
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
760
95
|
------------------------------------------------------
|
@@ -765,10 +100,6 @@ BootstrapHelperTest: test_returns_class_for_flash_type
|
|
765
100
|
----------------------------------------------------------------
|
766
101
|
MessagesControllerTest: test_should_show_bootstrap_flash_message
|
767
102
|
----------------------------------------------------------------
|
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
103
|
[1m[35m (0.1ms)[0m rollback transaction
|
773
104
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
774
105
|
----------------------------------------------------------------
|
@@ -776,8 +107,8 @@ MessagesControllerTest: test_should_show_bootstrap_flash_message
|
|
776
107
|
----------------------------------------------------------------
|
777
108
|
Processing by MessagesController#show as HTML
|
778
109
|
Rendered messages/show.html.erb within layouts/application (1.1ms)
|
779
|
-
Rendered shared/_flash_messages.html.haml (2.
|
780
|
-
Completed 200 OK in
|
110
|
+
Rendered shared/_flash_messages.html.haml (2.0ms)
|
111
|
+
Completed 200 OK in 19ms (Views: 18.7ms | ActiveRecord: 0.0ms)
|
781
112
|
[1m[35m (0.1ms)[0m rollback transaction
|
782
113
|
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
783
114
|
------------------------------------------------------
|
@@ -794,7 +125,7 @@ BootstrapHelperTest: test_returns_class_for_flash_type
|
|
794
125
|
MessagesControllerTest: test_should_show_bootstrap_flash_message
|
795
126
|
----------------------------------------------------------------
|
796
127
|
Processing by MessagesController#show as HTML
|
797
|
-
Rendered messages/show.html.erb within layouts/application (1.
|
798
|
-
Rendered shared/_flash_messages.html.haml (2.
|
799
|
-
Completed 200 OK in 21ms (Views:
|
128
|
+
Rendered messages/show.html.erb within layouts/application (1.1ms)
|
129
|
+
Rendered shared/_flash_messages.html.haml (2.7ms)
|
130
|
+
Completed 200 OK in 21ms (Views: 20.8ms | ActiveRecord: 0.0ms)
|
800
131
|
[1m[35m (0.1ms)[0m rollback transaction
|