tuning 0.2.2 → 0.2.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/README.rdoc +19 -15
- data/lib/tuning.rb +0 -1
- data/lib/tuning/action_controller/base.rb +4 -4
- data/lib/tuning/action_view/base.rb +2 -2
- data/lib/tuning/action_view/template.rb +15 -5
- data/lib/tuning/version.rb +1 -1
- data/test/active_trail_test.rb +3 -3
- data/test/button_test.rb +15 -6
- data/test/content_tag_if_test.rb +3 -3
- data/test/dummy/app/views/pages/defined.html.erb +3 -0
- data/test/dummy/app/views/pages/{other.html.erb → variable.html.erb} +0 -0
- data/test/dummy/config/locales/en.yml +4 -4
- data/test/dummy/log/test.log +2109 -0
- data/test/seo_test.rb +15 -10
- data/test/status_test.rb +8 -8
- metadata +8 -6
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dfe0f4e62357202f010df5e00f9974e474c08fd8
|
|
4
|
+
data.tar.gz: a149686ba2ab4269a79607678ee1cba6c41270ad
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d4ac4f96f8f774599fabc84851342e113abe38d9ae4d6ad8c81d7aa5399bab6436aac2c6d61eb676d4d633d48e3057858ed1ef6100507fa34279cc59049b7da9
|
|
7
|
+
data.tar.gz: ad6b5c9b50f99cde5e04a26fbd366436acdf5e5696d4f9a5f840e1e01963028c76da3be4e714f35c414d63d2692196cef7186de3c9a62e2a78c7d9fabe9048c6
|
data/README.rdoc
CHANGED
|
@@ -1,43 +1,37 @@
|
|
|
1
|
-
{<img src="https://badge.fury.io/rb/tuning.png" alt="Gem Version" />}[http://badge.fury.io/rb/tuning] {<img src="https://codeclimate.com/github/museways/tuning.png" />}[https://codeclimate.com/github/museways/tuning] {<img src="https://travis-ci.org/museways/tuning.png?branch=master" alt="Build Status" />}[https://travis-ci.org/museways/tuning]
|
|
2
|
-
|
|
3
|
-
=== NOTE: From version 0.2.0 and above the seo handling change, please see below.
|
|
4
|
-
|
|
5
|
-
---
|
|
1
|
+
{<img src="https://badge.fury.io/rb/tuning.png" alt="Gem Version" />}[http://badge.fury.io/rb/tuning] {<img src="https://codeclimate.com/github/museways/tuning.png" />}[https://codeclimate.com/github/museways/tuning] {<img src="https://travis-ci.org/museways/tuning.png?branch=master" alt="Build Status" />}[https://travis-ci.org/museways/tuning]
|
|
6
2
|
|
|
7
3
|
= Tuning
|
|
8
4
|
|
|
9
|
-
Common used
|
|
5
|
+
Common tools used in rails extracted into a gem.
|
|
10
6
|
|
|
11
7
|
= Install
|
|
12
8
|
|
|
13
9
|
Put this line in your Gemfile:
|
|
14
10
|
gem 'tuning'
|
|
15
|
-
|
|
11
|
+
|
|
16
12
|
Then bundle:
|
|
17
13
|
$ bundle
|
|
18
14
|
|
|
19
15
|
= Controllers
|
|
20
16
|
|
|
21
|
-
(This gem will call error method to force debug information on exceptions in development env)
|
|
22
|
-
|
|
23
17
|
Use error method to respond with status 500 and show 500.html (if format it's html) in your controller:
|
|
24
18
|
error
|
|
25
19
|
|
|
26
|
-
Use not_found
|
|
20
|
+
Use not_found to respond with status 404 and show 404.html (if format it's html) in your controller:
|
|
27
21
|
not_found
|
|
28
22
|
|
|
29
|
-
Use unauthorized
|
|
23
|
+
Use unauthorized to respond with status 401 and show 422.html (if format it's html) in your controller:
|
|
30
24
|
unauthorized
|
|
31
25
|
|
|
32
|
-
Use forbidden
|
|
26
|
+
Use forbidden to respond with status 403 and show 422.html (if format it's html) in your controller:
|
|
33
27
|
forbidden
|
|
34
28
|
|
|
35
|
-
Use unprocessable_entity
|
|
29
|
+
Use unprocessable_entity to respond with status 422 and show 422.html (if format it's html) in your controller:
|
|
36
30
|
unprocessable_entity
|
|
37
31
|
|
|
38
|
-
|
|
32
|
+
NOTE: If any exception is raised, error will be called to force debug information in development environment.
|
|
39
33
|
|
|
40
|
-
|
|
34
|
+
= Views
|
|
41
35
|
|
|
42
36
|
Use seo_options to customize the options of the title, description and keywords:
|
|
43
37
|
<% seo_options name: @record.name %>
|
|
@@ -54,3 +48,13 @@ The method submit_tag outputs a button with span inside:
|
|
|
54
48
|
<button name="commit" value="submit">
|
|
55
49
|
<span>Send</span>
|
|
56
50
|
</button>
|
|
51
|
+
|
|
52
|
+
NOTE: For each template @title, @description and @keywords will be set using lazy translation loaders.
|
|
53
|
+
|
|
54
|
+
= Credits
|
|
55
|
+
|
|
56
|
+
This gem is maintained and funded by museways[http://museways.com].
|
|
57
|
+
|
|
58
|
+
= License
|
|
59
|
+
|
|
60
|
+
It is free software, and may be redistributed under the terms specified in the MIT-LICENSE file.
|
data/lib/tuning.rb
CHANGED
|
@@ -6,9 +6,9 @@ module Tuning
|
|
|
6
6
|
included do
|
|
7
7
|
rescue_from Exception, with: :error if Rails.env.development?
|
|
8
8
|
end
|
|
9
|
-
|
|
9
|
+
|
|
10
10
|
protected
|
|
11
|
-
|
|
11
|
+
|
|
12
12
|
def error(exception=nil)
|
|
13
13
|
if exception
|
|
14
14
|
logger.error exception.message
|
|
@@ -26,14 +26,14 @@ module Tuning
|
|
|
26
26
|
format.any { render file: Rails.root.join('public', '404.html'), status: 404, layout: false }
|
|
27
27
|
end
|
|
28
28
|
end
|
|
29
|
-
|
|
29
|
+
|
|
30
30
|
def unauthorized
|
|
31
31
|
respond_to do |format|
|
|
32
32
|
format.json { head 401 }
|
|
33
33
|
format.any { render file: Rails.root.join('public', '422.html'), status: 401, layout: false }
|
|
34
34
|
end
|
|
35
35
|
end
|
|
36
|
-
|
|
36
|
+
|
|
37
37
|
def forbidden
|
|
38
38
|
respond_to do |format|
|
|
39
39
|
format.json { head 403 }
|
|
@@ -6,7 +6,7 @@ module Tuning
|
|
|
6
6
|
included do
|
|
7
7
|
alias_method_chain :submit_tag, :button
|
|
8
8
|
end
|
|
9
|
-
|
|
9
|
+
|
|
10
10
|
def seo_options(options)
|
|
11
11
|
@seo_options = options
|
|
12
12
|
end
|
|
@@ -22,7 +22,7 @@ module Tuning
|
|
|
22
22
|
def submit_tag_with_button(value='Send', options={})
|
|
23
23
|
button_tag({ type: 'submit', name: 'commit' }.update(options)) { content_tag(:span, value) }
|
|
24
24
|
end
|
|
25
|
-
|
|
25
|
+
|
|
26
26
|
end
|
|
27
27
|
end
|
|
28
28
|
end
|
|
@@ -14,11 +14,21 @@ module Tuning
|
|
|
14
14
|
else
|
|
15
15
|
format = mime_type.symbol
|
|
16
16
|
end
|
|
17
|
-
if format == :html and virtual_path and virtual_path.split('/').last.first != '_'
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
17
|
+
if format == :html and virtual_path and virtual_path.split('/').last.first != '_'
|
|
18
|
+
if virtual_path.split('/').first == 'layouts'
|
|
19
|
+
%w(title description keywords seo_options).each do |tag|
|
|
20
|
+
if view.instance_variable_defined? :"@#{tag}"
|
|
21
|
+
view.send :remove_instance_variable, :"@#{tag}"
|
|
22
|
+
end
|
|
23
|
+
end
|
|
24
|
+
else
|
|
25
|
+
%w(title description keywords).each do |tag|
|
|
26
|
+
unless view.instance_variable_defined? :"@#{tag}"
|
|
27
|
+
options = (view.instance_variable_get(:@seo_options) || {}).merge(default: '')
|
|
28
|
+
content = I18n.t("#{virtual_path.gsub('/', '.')}.#{tag}", options)
|
|
29
|
+
view.instance_variable_set :"@#{tag}", content
|
|
30
|
+
end
|
|
31
|
+
end
|
|
22
32
|
end
|
|
23
33
|
end
|
|
24
34
|
output
|
data/lib/tuning/version.rb
CHANGED
data/test/active_trail_test.rb
CHANGED
|
@@ -2,13 +2,13 @@ require 'test_helper'
|
|
|
2
2
|
|
|
3
3
|
class ActiveTrailTest < ActionView::TestCase
|
|
4
4
|
|
|
5
|
-
test "
|
|
5
|
+
test "return true if path is in active trail" do
|
|
6
6
|
set_path '/some-path/other-path'
|
|
7
7
|
assert active_trail?('/')
|
|
8
8
|
assert active_trail?('/some-path')
|
|
9
9
|
end
|
|
10
10
|
|
|
11
|
-
test "
|
|
11
|
+
test "return true if path is the same as active trail" do
|
|
12
12
|
set_path '/'
|
|
13
13
|
assert active_trail?('/')
|
|
14
14
|
|
|
@@ -16,7 +16,7 @@ class ActiveTrailTest < ActionView::TestCase
|
|
|
16
16
|
assert active_trail?('/some-path')
|
|
17
17
|
end
|
|
18
18
|
|
|
19
|
-
test "
|
|
19
|
+
test "return false if path is not in active trail" do
|
|
20
20
|
set_path '/'
|
|
21
21
|
assert !active_trail?('/some-path')
|
|
22
22
|
|
data/test/button_test.rb
CHANGED
|
@@ -2,16 +2,25 @@ require 'test_helper'
|
|
|
2
2
|
|
|
3
3
|
class ButtonTest < ActionView::TestCase
|
|
4
4
|
|
|
5
|
-
test "
|
|
6
|
-
assert_equal
|
|
5
|
+
test "use button with span inside instead of input" do
|
|
6
|
+
assert_equal(
|
|
7
|
+
'<button name="commit" type="submit"><span>Send</span></button>',
|
|
8
|
+
submit_tag
|
|
9
|
+
)
|
|
7
10
|
end
|
|
8
11
|
|
|
9
|
-
test "
|
|
10
|
-
assert_equal
|
|
12
|
+
test "use the value as label" do
|
|
13
|
+
assert_equal(
|
|
14
|
+
'<button name="commit" type="submit"><span>Other</span></button>',
|
|
15
|
+
submit_tag('Other')
|
|
16
|
+
)
|
|
11
17
|
end
|
|
12
18
|
|
|
13
|
-
test "
|
|
14
|
-
assert_equal
|
|
19
|
+
test "accept options as attributes" do
|
|
20
|
+
assert_equal(
|
|
21
|
+
'<button attribute="value" name="commit" type="submit"><span>Send</span></button>',
|
|
22
|
+
submit_tag('Send', attribute: 'value')
|
|
23
|
+
)
|
|
15
24
|
end
|
|
16
25
|
|
|
17
26
|
end
|
data/test/content_tag_if_test.rb
CHANGED
|
@@ -2,15 +2,15 @@ require 'test_helper'
|
|
|
2
2
|
|
|
3
3
|
class ContentTagIfTest < ActionView::TestCase
|
|
4
4
|
|
|
5
|
-
test "
|
|
5
|
+
test "show tag if condition is true" do
|
|
6
6
|
assert_equal '<a>content</a>', content_tag_if(1 == 1, 'a') { 'content' }
|
|
7
7
|
end
|
|
8
8
|
|
|
9
|
-
test "
|
|
9
|
+
test "not show tag if condition if false" do
|
|
10
10
|
assert_equal 'content', content_tag_if(1 == 2, 'a') { 'content' }
|
|
11
11
|
end
|
|
12
12
|
|
|
13
|
-
test "
|
|
13
|
+
test "accept options as attributes" do
|
|
14
14
|
assert_equal '<a href="#">content</a>', content_tag_if(1 == 1, 'a', href: '#') { 'content' }
|
|
15
15
|
end
|
|
16
16
|
|
|
File without changes
|
|
@@ -4,7 +4,7 @@ en:
|
|
|
4
4
|
title: 'index title'
|
|
5
5
|
description: 'index description'
|
|
6
6
|
keywords: 'index keywords'
|
|
7
|
-
|
|
8
|
-
title: '
|
|
9
|
-
description: '
|
|
10
|
-
keywords: '
|
|
7
|
+
variable:
|
|
8
|
+
title: 'variable %{name}'
|
|
9
|
+
description: 'variable %{name}'
|
|
10
|
+
keywords: 'variable %{name}'
|
data/test/dummy/log/test.log
CHANGED
|
@@ -10321,3 +10321,2112 @@ Started GET "/error" for 127.0.0.1 at 2014-06-08 15:14:46 -0300
|
|
|
10321
10321
|
Processing by StatusController#error_action as HTML
|
|
10322
10322
|
Completed 500 Internal Server Error in 58ms (Views: 57.4ms | ActiveRecord: 0.0ms)
|
|
10323
10323
|
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
|
10324
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
10325
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
10326
|
+
[1m[36m (0.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
10327
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
10328
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
10329
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10330
|
+
-----------------------------------------------------------------
|
|
10331
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
10332
|
+
-----------------------------------------------------------------
|
|
10333
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10334
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10335
|
+
------------------------------------------------------------
|
|
10336
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
10337
|
+
------------------------------------------------------------
|
|
10338
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10339
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10340
|
+
---------------------------------------------------------------------
|
|
10341
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
10342
|
+
---------------------------------------------------------------------
|
|
10343
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10344
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10345
|
+
-----------------------------------------------------------------
|
|
10346
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
10347
|
+
-----------------------------------------------------------------
|
|
10348
|
+
Rendered pages/_dummy.html.erb (0.3ms)
|
|
10349
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10350
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10351
|
+
---------------------------------------------------
|
|
10352
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
10353
|
+
---------------------------------------------------
|
|
10354
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10355
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10356
|
+
---------------------------------------------------------
|
|
10357
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
10358
|
+
---------------------------------------------------------
|
|
10359
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10360
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10361
|
+
----------------------------------------------------
|
|
10362
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
10363
|
+
----------------------------------------------------
|
|
10364
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10365
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10366
|
+
---------------------------------------------
|
|
10367
|
+
ButtonTest: test_accept_options_as_attributes
|
|
10368
|
+
---------------------------------------------
|
|
10369
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10370
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10371
|
+
-------------------------------------------------------------
|
|
10372
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
10373
|
+
-------------------------------------------------------------
|
|
10374
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10375
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10376
|
+
---------------------------------------
|
|
10377
|
+
ButtonTest: test_use_the_value_as_label
|
|
10378
|
+
---------------------------------------
|
|
10379
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10380
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10381
|
+
----------------------------------------------------------------
|
|
10382
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
10383
|
+
----------------------------------------------------------------
|
|
10384
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-06-24 20:49:10 -0300
|
|
10385
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
10386
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
10387
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-06-24 20:49:10 -0300
|
|
10388
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
10389
|
+
Completed 401 Unauthorized in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
|
10390
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10391
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10392
|
+
-------------------------------------------------------------
|
|
10393
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
10394
|
+
-------------------------------------------------------------
|
|
10395
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-06-24 20:49:10 -0300
|
|
10396
|
+
Processing by StatusController#forbidden_action as JSON
|
|
10397
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
10398
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-06-24 20:49:10 -0300
|
|
10399
|
+
Processing by StatusController#forbidden_action as HTML
|
|
10400
|
+
Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
10401
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10402
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10403
|
+
-------------------------------------------------------------
|
|
10404
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
10405
|
+
-------------------------------------------------------------
|
|
10406
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-06-24 20:49:10 -0300
|
|
10407
|
+
Processing by StatusController#not_found_action as JSON
|
|
10408
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
10409
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-06-24 20:49:10 -0300
|
|
10410
|
+
Processing by StatusController#not_found_action as HTML
|
|
10411
|
+
Completed 404 Not Found in 23ms (Views: 22.6ms | ActiveRecord: 0.0ms)
|
|
10412
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10413
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10414
|
+
------------------------------------------------------------------------
|
|
10415
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
10416
|
+
------------------------------------------------------------------------
|
|
10417
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-06-24 20:49:10 -0300
|
|
10418
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
10419
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
10420
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-06-24 20:49:10 -0300
|
|
10421
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
10422
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
10423
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10424
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10425
|
+
---------------------------------------------------------
|
|
10426
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
10427
|
+
---------------------------------------------------------
|
|
10428
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-06-24 20:49:10 -0300
|
|
10429
|
+
Processing by StatusController#error_action as JSON
|
|
10430
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
10431
|
+
Started GET "/error" for 127.0.0.1 at 2014-06-24 20:49:10 -0300
|
|
10432
|
+
Processing by StatusController#error_action as HTML
|
|
10433
|
+
Completed 500 Internal Server Error in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
|
10434
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10435
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
10436
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
10437
|
+
[1m[36m (0.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
10438
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
10439
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
10440
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10441
|
+
---------------------------------------------------
|
|
10442
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
10443
|
+
---------------------------------------------------
|
|
10444
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10445
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10446
|
+
---------------------------------------------------------
|
|
10447
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
10448
|
+
---------------------------------------------------------
|
|
10449
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10450
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10451
|
+
----------------------------------------------------
|
|
10452
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
10453
|
+
----------------------------------------------------
|
|
10454
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10455
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10456
|
+
-----------------------------------------------------------------
|
|
10457
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
10458
|
+
-----------------------------------------------------------------
|
|
10459
|
+
Rendered pages/_dummy.html.erb (0.3ms)
|
|
10460
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10461
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10462
|
+
-----------------------------------------------------------------
|
|
10463
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
10464
|
+
-----------------------------------------------------------------
|
|
10465
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10466
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10467
|
+
------------------------------------------------------------
|
|
10468
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
10469
|
+
------------------------------------------------------------
|
|
10470
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10471
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10472
|
+
---------------------------------------------------------------------
|
|
10473
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
10474
|
+
---------------------------------------------------------------------
|
|
10475
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10476
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10477
|
+
---------------------------------------------
|
|
10478
|
+
ButtonTest: test_accept_options_as_attributes
|
|
10479
|
+
---------------------------------------------
|
|
10480
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10481
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10482
|
+
-------------------------------------------------------------
|
|
10483
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
10484
|
+
-------------------------------------------------------------
|
|
10485
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10486
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10487
|
+
---------------------------------------
|
|
10488
|
+
ButtonTest: test_use_the_value_as_label
|
|
10489
|
+
---------------------------------------
|
|
10490
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10491
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10492
|
+
----------------------------------------------------------------
|
|
10493
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
10494
|
+
----------------------------------------------------------------
|
|
10495
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 17:38:34 -0300
|
|
10496
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
10497
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
10498
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 17:38:34 -0300
|
|
10499
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
10500
|
+
Completed 401 Unauthorized in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
|
10501
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10502
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10503
|
+
-------------------------------------------------------------
|
|
10504
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
10505
|
+
-------------------------------------------------------------
|
|
10506
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 17:38:34 -0300
|
|
10507
|
+
Processing by StatusController#forbidden_action as JSON
|
|
10508
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
10509
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 17:38:34 -0300
|
|
10510
|
+
Processing by StatusController#forbidden_action as HTML
|
|
10511
|
+
Completed 403 Forbidden in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
10512
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10513
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10514
|
+
-------------------------------------------------------------
|
|
10515
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
10516
|
+
-------------------------------------------------------------
|
|
10517
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 17:38:34 -0300
|
|
10518
|
+
Processing by StatusController#not_found_action as JSON
|
|
10519
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
10520
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 17:38:34 -0300
|
|
10521
|
+
Processing by StatusController#not_found_action as HTML
|
|
10522
|
+
Completed 404 Not Found in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
|
10523
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10524
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10525
|
+
------------------------------------------------------------------------
|
|
10526
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
10527
|
+
------------------------------------------------------------------------
|
|
10528
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 17:38:34 -0300
|
|
10529
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
10530
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
10531
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 17:38:34 -0300
|
|
10532
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
10533
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
10534
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10535
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10536
|
+
---------------------------------------------------------
|
|
10537
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
10538
|
+
---------------------------------------------------------
|
|
10539
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 17:38:34 -0300
|
|
10540
|
+
Processing by StatusController#error_action as JSON
|
|
10541
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
10542
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 17:38:34 -0300
|
|
10543
|
+
Processing by StatusController#error_action as HTML
|
|
10544
|
+
Completed 500 Internal Server Error in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
|
10545
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10546
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
10547
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
10548
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
10549
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
10550
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
10551
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10552
|
+
---------------------------------------------
|
|
10553
|
+
ButtonTest: test_accept_options_as_attributes
|
|
10554
|
+
---------------------------------------------
|
|
10555
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10556
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10557
|
+
-------------------------------------------------------------
|
|
10558
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
10559
|
+
-------------------------------------------------------------
|
|
10560
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10561
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10562
|
+
---------------------------------------
|
|
10563
|
+
ButtonTest: test_use_the_value_as_label
|
|
10564
|
+
---------------------------------------
|
|
10565
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10566
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10567
|
+
----------------------------------------------------------------
|
|
10568
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
10569
|
+
----------------------------------------------------------------
|
|
10570
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 17:41:15 -0300
|
|
10571
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
10572
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
10573
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 17:41:15 -0300
|
|
10574
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
10575
|
+
Completed 401 Unauthorized in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
|
|
10576
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10577
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10578
|
+
-------------------------------------------------------------
|
|
10579
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
10580
|
+
-------------------------------------------------------------
|
|
10581
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 17:41:15 -0300
|
|
10582
|
+
Processing by StatusController#forbidden_action as JSON
|
|
10583
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
10584
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 17:41:15 -0300
|
|
10585
|
+
Processing by StatusController#forbidden_action as HTML
|
|
10586
|
+
Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
10587
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10588
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10589
|
+
-------------------------------------------------------------
|
|
10590
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
10591
|
+
-------------------------------------------------------------
|
|
10592
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 17:41:15 -0300
|
|
10593
|
+
Processing by StatusController#not_found_action as JSON
|
|
10594
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
10595
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 17:41:15 -0300
|
|
10596
|
+
Processing by StatusController#not_found_action as HTML
|
|
10597
|
+
Completed 404 Not Found in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
10598
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10599
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10600
|
+
------------------------------------------------------------------------
|
|
10601
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
10602
|
+
------------------------------------------------------------------------
|
|
10603
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 17:41:15 -0300
|
|
10604
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
10605
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
10606
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 17:41:15 -0300
|
|
10607
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
10608
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
10609
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10610
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10611
|
+
---------------------------------------------------------
|
|
10612
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
10613
|
+
---------------------------------------------------------
|
|
10614
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 17:41:15 -0300
|
|
10615
|
+
Processing by StatusController#error_action as JSON
|
|
10616
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
10617
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 17:41:15 -0300
|
|
10618
|
+
Processing by StatusController#error_action as HTML
|
|
10619
|
+
Completed 500 Internal Server Error in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
10620
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10621
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10622
|
+
---------------------------------------------------
|
|
10623
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
10624
|
+
---------------------------------------------------
|
|
10625
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10626
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10627
|
+
---------------------------------------------------------
|
|
10628
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
10629
|
+
---------------------------------------------------------
|
|
10630
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10631
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10632
|
+
----------------------------------------------------
|
|
10633
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
10634
|
+
----------------------------------------------------
|
|
10635
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10636
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10637
|
+
-----------------------------------------------------------------
|
|
10638
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
10639
|
+
-----------------------------------------------------------------
|
|
10640
|
+
Rendered pages/_dummy.html.erb (0.4ms)
|
|
10641
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10642
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10643
|
+
-----------------------------------------------------------------
|
|
10644
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
10645
|
+
-----------------------------------------------------------------
|
|
10646
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10647
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10648
|
+
------------------------------------------------------------
|
|
10649
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
10650
|
+
------------------------------------------------------------
|
|
10651
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10652
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10653
|
+
---------------------------------------------------------------------
|
|
10654
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
10655
|
+
---------------------------------------------------------------------
|
|
10656
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10657
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
10658
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
10659
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
10660
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
10661
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
10662
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10663
|
+
---------------------------------------------
|
|
10664
|
+
ButtonTest: test_accept_options_as_attributes
|
|
10665
|
+
---------------------------------------------
|
|
10666
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10667
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10668
|
+
-------------------------------------------------------------
|
|
10669
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
10670
|
+
-------------------------------------------------------------
|
|
10671
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10672
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10673
|
+
---------------------------------------
|
|
10674
|
+
ButtonTest: test_use_the_value_as_label
|
|
10675
|
+
---------------------------------------
|
|
10676
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10677
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10678
|
+
-----------------------------------------------------------------
|
|
10679
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
10680
|
+
-----------------------------------------------------------------
|
|
10681
|
+
Rendered pages/_dummy.html.erb (0.4ms)
|
|
10682
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
10683
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
10684
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
10685
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
10686
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
10687
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10688
|
+
---------------------------------------------------
|
|
10689
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
10690
|
+
---------------------------------------------------
|
|
10691
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10692
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10693
|
+
---------------------------------------------------------
|
|
10694
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
10695
|
+
---------------------------------------------------------
|
|
10696
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10697
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10698
|
+
----------------------------------------------------
|
|
10699
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
10700
|
+
----------------------------------------------------
|
|
10701
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10702
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10703
|
+
-----------------------------------------------------------------
|
|
10704
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
10705
|
+
-----------------------------------------------------------------
|
|
10706
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10707
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10708
|
+
------------------------------------------------------------
|
|
10709
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
10710
|
+
------------------------------------------------------------
|
|
10711
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10712
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10713
|
+
---------------------------------------------------------------------
|
|
10714
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
10715
|
+
---------------------------------------------------------------------
|
|
10716
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10717
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10718
|
+
----------------------------------------------------------------
|
|
10719
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
10720
|
+
----------------------------------------------------------------
|
|
10721
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 17:42:21 -0300
|
|
10722
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
10723
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
10724
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 17:42:21 -0300
|
|
10725
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
10726
|
+
Completed 401 Unauthorized in 7ms (Views: 6.7ms | ActiveRecord: 0.0ms)
|
|
10727
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10728
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10729
|
+
-------------------------------------------------------------
|
|
10730
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
10731
|
+
-------------------------------------------------------------
|
|
10732
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 17:42:21 -0300
|
|
10733
|
+
Processing by StatusController#forbidden_action as JSON
|
|
10734
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
10735
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 17:42:21 -0300
|
|
10736
|
+
Processing by StatusController#forbidden_action as HTML
|
|
10737
|
+
Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
10738
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10739
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10740
|
+
-------------------------------------------------------------
|
|
10741
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
10742
|
+
-------------------------------------------------------------
|
|
10743
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 17:42:21 -0300
|
|
10744
|
+
Processing by StatusController#not_found_action as JSON
|
|
10745
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
10746
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 17:42:21 -0300
|
|
10747
|
+
Processing by StatusController#not_found_action as HTML
|
|
10748
|
+
Completed 404 Not Found in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
10749
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10750
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10751
|
+
------------------------------------------------------------------------
|
|
10752
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
10753
|
+
------------------------------------------------------------------------
|
|
10754
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 17:42:21 -0300
|
|
10755
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
10756
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
10757
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 17:42:21 -0300
|
|
10758
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
10759
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
10760
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10761
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10762
|
+
---------------------------------------------------------
|
|
10763
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
10764
|
+
---------------------------------------------------------
|
|
10765
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 17:42:21 -0300
|
|
10766
|
+
Processing by StatusController#error_action as JSON
|
|
10767
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
10768
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 17:42:21 -0300
|
|
10769
|
+
Processing by StatusController#error_action as HTML
|
|
10770
|
+
Completed 500 Internal Server Error in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
10771
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10772
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10773
|
+
---------------------------------------------
|
|
10774
|
+
ButtonTest: test_accept_options_as_attributes
|
|
10775
|
+
---------------------------------------------
|
|
10776
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10777
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10778
|
+
-------------------------------------------------------------
|
|
10779
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
10780
|
+
-------------------------------------------------------------
|
|
10781
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10782
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10783
|
+
---------------------------------------
|
|
10784
|
+
ButtonTest: test_use_the_value_as_label
|
|
10785
|
+
---------------------------------------
|
|
10786
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10787
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10788
|
+
-----------------------------------------------------------------
|
|
10789
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
10790
|
+
-----------------------------------------------------------------
|
|
10791
|
+
Rendered pages/_dummy.html.erb (0.3ms)
|
|
10792
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
10793
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
10794
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
10795
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
10796
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
10797
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10798
|
+
---------------------------------------------
|
|
10799
|
+
ButtonTest: test_accept_options_as_attributes
|
|
10800
|
+
---------------------------------------------
|
|
10801
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10802
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10803
|
+
-------------------------------------------------------------
|
|
10804
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
10805
|
+
-------------------------------------------------------------
|
|
10806
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10807
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10808
|
+
---------------------------------------
|
|
10809
|
+
ButtonTest: test_use_the_value_as_label
|
|
10810
|
+
---------------------------------------
|
|
10811
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10812
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10813
|
+
-----------------------------------------------------------------
|
|
10814
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
10815
|
+
-----------------------------------------------------------------
|
|
10816
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10817
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10818
|
+
------------------------------------------------------------
|
|
10819
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
10820
|
+
------------------------------------------------------------
|
|
10821
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10822
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10823
|
+
---------------------------------------------------------------------
|
|
10824
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
10825
|
+
---------------------------------------------------------------------
|
|
10826
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10827
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10828
|
+
---------------------------------------------------
|
|
10829
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
10830
|
+
---------------------------------------------------
|
|
10831
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10832
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10833
|
+
---------------------------------------------------------
|
|
10834
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
10835
|
+
---------------------------------------------------------
|
|
10836
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10837
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10838
|
+
----------------------------------------------------
|
|
10839
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
10840
|
+
----------------------------------------------------
|
|
10841
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10842
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10843
|
+
-----------------------------------------------------------------
|
|
10844
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
10845
|
+
-----------------------------------------------------------------
|
|
10846
|
+
Rendered pages/_dummy.html.erb (0.3ms)
|
|
10847
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10848
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10849
|
+
----------------------------------------------------------------
|
|
10850
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
10851
|
+
----------------------------------------------------------------
|
|
10852
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 17:43:06 -0300
|
|
10853
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
10854
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
10855
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 17:43:06 -0300
|
|
10856
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
10857
|
+
Completed 401 Unauthorized in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
|
10858
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10859
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10860
|
+
-------------------------------------------------------------
|
|
10861
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
10862
|
+
-------------------------------------------------------------
|
|
10863
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 17:43:06 -0300
|
|
10864
|
+
Processing by StatusController#forbidden_action as JSON
|
|
10865
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
10866
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 17:43:06 -0300
|
|
10867
|
+
Processing by StatusController#forbidden_action as HTML
|
|
10868
|
+
Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
10869
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10870
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10871
|
+
-------------------------------------------------------------
|
|
10872
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
10873
|
+
-------------------------------------------------------------
|
|
10874
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 17:43:06 -0300
|
|
10875
|
+
Processing by StatusController#not_found_action as JSON
|
|
10876
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
10877
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 17:43:06 -0300
|
|
10878
|
+
Processing by StatusController#not_found_action as HTML
|
|
10879
|
+
Completed 404 Not Found in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
10880
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10881
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10882
|
+
------------------------------------------------------------------------
|
|
10883
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
10884
|
+
------------------------------------------------------------------------
|
|
10885
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 17:43:06 -0300
|
|
10886
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
10887
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
10888
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 17:43:06 -0300
|
|
10889
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
10890
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
10891
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10892
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10893
|
+
---------------------------------------------------------
|
|
10894
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
10895
|
+
---------------------------------------------------------
|
|
10896
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 17:43:06 -0300
|
|
10897
|
+
Processing by StatusController#error_action as JSON
|
|
10898
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
10899
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 17:43:06 -0300
|
|
10900
|
+
Processing by StatusController#error_action as HTML
|
|
10901
|
+
Completed 500 Internal Server Error in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
10902
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10903
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
10904
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
10905
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
10906
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
10907
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
10908
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10909
|
+
-----------------------------------------------------------------
|
|
10910
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
10911
|
+
-----------------------------------------------------------------
|
|
10912
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10913
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10914
|
+
------------------------------------------------------------
|
|
10915
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
10916
|
+
------------------------------------------------------------
|
|
10917
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10918
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10919
|
+
---------------------------------------------------------------------
|
|
10920
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
10921
|
+
---------------------------------------------------------------------
|
|
10922
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10923
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
10924
|
+
---------------------------------------------
|
|
10925
|
+
ButtonTest: test_accept_options_as_attributes
|
|
10926
|
+
---------------------------------------------
|
|
10927
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10928
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10929
|
+
-------------------------------------------------------------
|
|
10930
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
10931
|
+
-------------------------------------------------------------
|
|
10932
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10933
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10934
|
+
---------------------------------------
|
|
10935
|
+
ButtonTest: test_use_the_value_as_label
|
|
10936
|
+
---------------------------------------
|
|
10937
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10938
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10939
|
+
----------------------------------------------------------------
|
|
10940
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
10941
|
+
----------------------------------------------------------------
|
|
10942
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 17:45:17 -0300
|
|
10943
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
10944
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
10945
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 17:45:17 -0300
|
|
10946
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
10947
|
+
Completed 401 Unauthorized in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
|
|
10948
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10949
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10950
|
+
-------------------------------------------------------------
|
|
10951
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
10952
|
+
-------------------------------------------------------------
|
|
10953
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 17:45:17 -0300
|
|
10954
|
+
Processing by StatusController#forbidden_action as JSON
|
|
10955
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
10956
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 17:45:17 -0300
|
|
10957
|
+
Processing by StatusController#forbidden_action as HTML
|
|
10958
|
+
Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
10959
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10960
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10961
|
+
-------------------------------------------------------------
|
|
10962
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
10963
|
+
-------------------------------------------------------------
|
|
10964
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 17:45:17 -0300
|
|
10965
|
+
Processing by StatusController#not_found_action as JSON
|
|
10966
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
10967
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 17:45:17 -0300
|
|
10968
|
+
Processing by StatusController#not_found_action as HTML
|
|
10969
|
+
Completed 404 Not Found in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
|
10970
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10971
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10972
|
+
------------------------------------------------------------------------
|
|
10973
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
10974
|
+
------------------------------------------------------------------------
|
|
10975
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 17:45:17 -0300
|
|
10976
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
10977
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
10978
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 17:45:17 -0300
|
|
10979
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
10980
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
10981
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
10982
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10983
|
+
---------------------------------------------------------
|
|
10984
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
10985
|
+
---------------------------------------------------------
|
|
10986
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 17:45:17 -0300
|
|
10987
|
+
Processing by StatusController#error_action as JSON
|
|
10988
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
10989
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 17:45:17 -0300
|
|
10990
|
+
Processing by StatusController#error_action as HTML
|
|
10991
|
+
Completed 500 Internal Server Error in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
10992
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10993
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10994
|
+
---------------------------------------------------
|
|
10995
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
10996
|
+
---------------------------------------------------
|
|
10997
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
10998
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
10999
|
+
---------------------------------------------------------
|
|
11000
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
11001
|
+
---------------------------------------------------------
|
|
11002
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11003
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11004
|
+
----------------------------------------------------
|
|
11005
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
11006
|
+
----------------------------------------------------
|
|
11007
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11008
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11009
|
+
-----------------------------------------------------------------
|
|
11010
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
11011
|
+
-----------------------------------------------------------------
|
|
11012
|
+
Rendered pages/_dummy.html.erb (0.6ms)
|
|
11013
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11014
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
11015
|
+
[1m[35m (0.0ms)[0m select sqlite_version(*)
|
|
11016
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
11017
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
11018
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
11019
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11020
|
+
-----------------------------------------------------------------
|
|
11021
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
11022
|
+
-----------------------------------------------------------------
|
|
11023
|
+
Rendered pages/_dummy.html.erb (0.4ms)
|
|
11024
|
+
Rendered pages/index.html.erb within layouts/application (9.5ms)
|
|
11025
|
+
Rendered pages/variable.html.erb within layouts/application (0.6ms)
|
|
11026
|
+
Rendered pages/empty.html.erb within layouts/application (0.4ms)
|
|
11027
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11028
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11029
|
+
----------------------------------------------------------------
|
|
11030
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
11031
|
+
----------------------------------------------------------------
|
|
11032
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 17:47:29 -0300
|
|
11033
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
11034
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
11035
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 17:47:29 -0300
|
|
11036
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
11037
|
+
Completed 401 Unauthorized in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
|
11038
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11039
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11040
|
+
-------------------------------------------------------------
|
|
11041
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
11042
|
+
-------------------------------------------------------------
|
|
11043
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 17:47:29 -0300
|
|
11044
|
+
Processing by StatusController#forbidden_action as JSON
|
|
11045
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
11046
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 17:47:29 -0300
|
|
11047
|
+
Processing by StatusController#forbidden_action as HTML
|
|
11048
|
+
Completed 403 Forbidden in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
|
11049
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11050
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11051
|
+
-------------------------------------------------------------
|
|
11052
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
11053
|
+
-------------------------------------------------------------
|
|
11054
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 17:47:29 -0300
|
|
11055
|
+
Processing by StatusController#not_found_action as JSON
|
|
11056
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
11057
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 17:47:29 -0300
|
|
11058
|
+
Processing by StatusController#not_found_action as HTML
|
|
11059
|
+
Completed 404 Not Found in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
11060
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11061
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11062
|
+
------------------------------------------------------------------------
|
|
11063
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
11064
|
+
------------------------------------------------------------------------
|
|
11065
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 17:47:29 -0300
|
|
11066
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
11067
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
11068
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 17:47:29 -0300
|
|
11069
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
11070
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
11071
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11072
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11073
|
+
---------------------------------------------------------
|
|
11074
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
11075
|
+
---------------------------------------------------------
|
|
11076
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 17:47:29 -0300
|
|
11077
|
+
Processing by StatusController#error_action as JSON
|
|
11078
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
11079
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 17:47:29 -0300
|
|
11080
|
+
Processing by StatusController#error_action as HTML
|
|
11081
|
+
Completed 500 Internal Server Error in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
|
11082
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11083
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11084
|
+
---------------------------------------------------
|
|
11085
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
11086
|
+
---------------------------------------------------
|
|
11087
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11088
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11089
|
+
---------------------------------------------------------
|
|
11090
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
11091
|
+
---------------------------------------------------------
|
|
11092
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11093
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11094
|
+
----------------------------------------------------
|
|
11095
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
11096
|
+
----------------------------------------------------
|
|
11097
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11098
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11099
|
+
-----------------------------------------------------------------
|
|
11100
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
11101
|
+
-----------------------------------------------------------------
|
|
11102
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11103
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11104
|
+
------------------------------------------------------------
|
|
11105
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
11106
|
+
------------------------------------------------------------
|
|
11107
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11108
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11109
|
+
---------------------------------------------------------------------
|
|
11110
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
11111
|
+
---------------------------------------------------------------------
|
|
11112
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11113
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11114
|
+
---------------------------------------------
|
|
11115
|
+
ButtonTest: test_accept_options_as_attributes
|
|
11116
|
+
---------------------------------------------
|
|
11117
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11118
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11119
|
+
-------------------------------------------------------------
|
|
11120
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
11121
|
+
-------------------------------------------------------------
|
|
11122
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11123
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11124
|
+
---------------------------------------
|
|
11125
|
+
ButtonTest: test_use_the_value_as_label
|
|
11126
|
+
---------------------------------------
|
|
11127
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11128
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
11129
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
11130
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
11131
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
11132
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
11133
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11134
|
+
---------------------------------------------------
|
|
11135
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
11136
|
+
---------------------------------------------------
|
|
11137
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11138
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11139
|
+
---------------------------------------------------------
|
|
11140
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
11141
|
+
---------------------------------------------------------
|
|
11142
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11143
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11144
|
+
----------------------------------------------------
|
|
11145
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
11146
|
+
----------------------------------------------------
|
|
11147
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11148
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11149
|
+
-----------------------------------------------------------------
|
|
11150
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
11151
|
+
-----------------------------------------------------------------
|
|
11152
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11153
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11154
|
+
------------------------------------------------------------
|
|
11155
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
11156
|
+
------------------------------------------------------------
|
|
11157
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11158
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11159
|
+
---------------------------------------------------------------------
|
|
11160
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
11161
|
+
---------------------------------------------------------------------
|
|
11162
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11163
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11164
|
+
---------------------------------------------
|
|
11165
|
+
ButtonTest: test_accept_options_as_attributes
|
|
11166
|
+
---------------------------------------------
|
|
11167
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11168
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11169
|
+
-------------------------------------------------------------
|
|
11170
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
11171
|
+
-------------------------------------------------------------
|
|
11172
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11173
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11174
|
+
---------------------------------------
|
|
11175
|
+
ButtonTest: test_use_the_value_as_label
|
|
11176
|
+
---------------------------------------
|
|
11177
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11178
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11179
|
+
----------------------------------------------------------------
|
|
11180
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
11181
|
+
----------------------------------------------------------------
|
|
11182
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 17:48:18 -0300
|
|
11183
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
11184
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
11185
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 17:48:18 -0300
|
|
11186
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
11187
|
+
Completed 401 Unauthorized in 6ms (Views: 5.9ms | ActiveRecord: 0.0ms)
|
|
11188
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11189
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11190
|
+
-------------------------------------------------------------
|
|
11191
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
11192
|
+
-------------------------------------------------------------
|
|
11193
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 17:48:18 -0300
|
|
11194
|
+
Processing by StatusController#forbidden_action as JSON
|
|
11195
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
11196
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 17:48:18 -0300
|
|
11197
|
+
Processing by StatusController#forbidden_action as HTML
|
|
11198
|
+
Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
11199
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11200
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11201
|
+
-------------------------------------------------------------
|
|
11202
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
11203
|
+
-------------------------------------------------------------
|
|
11204
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 17:48:18 -0300
|
|
11205
|
+
Processing by StatusController#not_found_action as JSON
|
|
11206
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
11207
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 17:48:18 -0300
|
|
11208
|
+
Processing by StatusController#not_found_action as HTML
|
|
11209
|
+
Completed 404 Not Found in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
11210
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11211
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11212
|
+
------------------------------------------------------------------------
|
|
11213
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
11214
|
+
------------------------------------------------------------------------
|
|
11215
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 17:48:18 -0300
|
|
11216
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
11217
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
11218
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 17:48:18 -0300
|
|
11219
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
11220
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
11221
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11222
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11223
|
+
---------------------------------------------------------
|
|
11224
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
11225
|
+
---------------------------------------------------------
|
|
11226
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 17:48:18 -0300
|
|
11227
|
+
Processing by StatusController#error_action as JSON
|
|
11228
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
11229
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 17:48:18 -0300
|
|
11230
|
+
Processing by StatusController#error_action as HTML
|
|
11231
|
+
Completed 500 Internal Server Error in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
11232
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11233
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11234
|
+
-----------------------------------------------------------------
|
|
11235
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
11236
|
+
-----------------------------------------------------------------
|
|
11237
|
+
Rendered pages/_dummy.html.erb (0.4ms)
|
|
11238
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
11239
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
11240
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
11241
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
11242
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
11243
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11244
|
+
----------------------------------------------------------------
|
|
11245
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
11246
|
+
----------------------------------------------------------------
|
|
11247
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 17:50:29 -0300
|
|
11248
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
11249
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
11250
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 17:50:29 -0300
|
|
11251
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
11252
|
+
Rendered public/422.html (1.2ms)
|
|
11253
|
+
Completed 401 Unauthorized in 8ms (Views: 7.3ms | ActiveRecord: 0.0ms)
|
|
11254
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11255
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11256
|
+
-------------------------------------------------------------
|
|
11257
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
11258
|
+
-------------------------------------------------------------
|
|
11259
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 17:50:29 -0300
|
|
11260
|
+
Processing by StatusController#forbidden_action as JSON
|
|
11261
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
11262
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 17:50:29 -0300
|
|
11263
|
+
Processing by StatusController#forbidden_action as HTML
|
|
11264
|
+
Completed 403 Forbidden in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
|
11265
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11266
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11267
|
+
-------------------------------------------------------------
|
|
11268
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
11269
|
+
-------------------------------------------------------------
|
|
11270
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 17:50:29 -0300
|
|
11271
|
+
Processing by StatusController#not_found_action as JSON
|
|
11272
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
11273
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 17:50:29 -0300
|
|
11274
|
+
Processing by StatusController#not_found_action as HTML
|
|
11275
|
+
Completed 404 Not Found in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
|
11276
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11277
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11278
|
+
------------------------------------------------------------------------
|
|
11279
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
11280
|
+
------------------------------------------------------------------------
|
|
11281
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 17:50:29 -0300
|
|
11282
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
11283
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
11284
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 17:50:29 -0300
|
|
11285
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
11286
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
11287
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11288
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11289
|
+
---------------------------------------------------------
|
|
11290
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
11291
|
+
---------------------------------------------------------
|
|
11292
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 17:50:29 -0300
|
|
11293
|
+
Processing by StatusController#error_action as JSON
|
|
11294
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
11295
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 17:50:29 -0300
|
|
11296
|
+
Processing by StatusController#error_action as HTML
|
|
11297
|
+
Completed 500 Internal Server Error in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
11298
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11299
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11300
|
+
---------------------------------------------------
|
|
11301
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
11302
|
+
---------------------------------------------------
|
|
11303
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11304
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11305
|
+
---------------------------------------------------------
|
|
11306
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
11307
|
+
---------------------------------------------------------
|
|
11308
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11309
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11310
|
+
----------------------------------------------------
|
|
11311
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
11312
|
+
----------------------------------------------------
|
|
11313
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11314
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11315
|
+
-----------------------------------------------------------------
|
|
11316
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
11317
|
+
-----------------------------------------------------------------
|
|
11318
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11319
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11320
|
+
------------------------------------------------------------
|
|
11321
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
11322
|
+
------------------------------------------------------------
|
|
11323
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11324
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11325
|
+
---------------------------------------------------------------------
|
|
11326
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
11327
|
+
---------------------------------------------------------------------
|
|
11328
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11329
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11330
|
+
-----------------------------------------------------------------
|
|
11331
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
11332
|
+
-----------------------------------------------------------------
|
|
11333
|
+
Rendered pages/_dummy.html.erb (0.4ms)
|
|
11334
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
11335
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
11336
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
11337
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
11338
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
11339
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11340
|
+
----------------------------------------------------------------
|
|
11341
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
11342
|
+
----------------------------------------------------------------
|
|
11343
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 17:56:27 -0300
|
|
11344
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
11345
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
11346
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 17:56:27 -0300
|
|
11347
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
11348
|
+
Rendered public/422.html (1.2ms)
|
|
11349
|
+
Completed 401 Unauthorized in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
|
11350
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11351
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11352
|
+
-------------------------------------------------------------
|
|
11353
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
11354
|
+
-------------------------------------------------------------
|
|
11355
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 17:56:27 -0300
|
|
11356
|
+
Processing by StatusController#forbidden_action as JSON
|
|
11357
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
11358
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 17:56:27 -0300
|
|
11359
|
+
Processing by StatusController#forbidden_action as HTML
|
|
11360
|
+
Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
11361
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11362
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11363
|
+
-------------------------------------------------------------
|
|
11364
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
11365
|
+
-------------------------------------------------------------
|
|
11366
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 17:56:27 -0300
|
|
11367
|
+
Processing by StatusController#not_found_action as JSON
|
|
11368
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
11369
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 17:56:27 -0300
|
|
11370
|
+
Processing by StatusController#not_found_action as HTML
|
|
11371
|
+
Completed 404 Not Found in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
11372
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11373
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11374
|
+
------------------------------------------------------------------------
|
|
11375
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
11376
|
+
------------------------------------------------------------------------
|
|
11377
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 17:56:27 -0300
|
|
11378
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
11379
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
11380
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 17:56:27 -0300
|
|
11381
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
11382
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
11383
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11384
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11385
|
+
---------------------------------------------------------
|
|
11386
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
11387
|
+
---------------------------------------------------------
|
|
11388
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 17:56:27 -0300
|
|
11389
|
+
Processing by StatusController#error_action as JSON
|
|
11390
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
11391
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 17:56:27 -0300
|
|
11392
|
+
Processing by StatusController#error_action as HTML
|
|
11393
|
+
Completed 500 Internal Server Error in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
11394
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11395
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11396
|
+
-----------------------------------------------------------------
|
|
11397
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
11398
|
+
-----------------------------------------------------------------
|
|
11399
|
+
Rendered pages/_dummy.html.erb (0.3ms)
|
|
11400
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
11401
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
11402
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
11403
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
11404
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
11405
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11406
|
+
-----------------------------------------------------------------
|
|
11407
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
11408
|
+
-----------------------------------------------------------------
|
|
11409
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11410
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11411
|
+
------------------------------------------------------------
|
|
11412
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
11413
|
+
------------------------------------------------------------
|
|
11414
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11415
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11416
|
+
---------------------------------------------------------------------
|
|
11417
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
11418
|
+
---------------------------------------------------------------------
|
|
11419
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11420
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11421
|
+
----------------------------------------------------------------
|
|
11422
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
11423
|
+
----------------------------------------------------------------
|
|
11424
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 18:10:31 -0300
|
|
11425
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
11426
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
11427
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 18:10:31 -0300
|
|
11428
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
11429
|
+
Completed 401 Unauthorized in 7ms (Views: 6.8ms | ActiveRecord: 0.0ms)
|
|
11430
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11431
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11432
|
+
-------------------------------------------------------------
|
|
11433
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
11434
|
+
-------------------------------------------------------------
|
|
11435
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 18:10:31 -0300
|
|
11436
|
+
Processing by StatusController#forbidden_action as JSON
|
|
11437
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
11438
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 18:10:31 -0300
|
|
11439
|
+
Processing by StatusController#forbidden_action as HTML
|
|
11440
|
+
Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
11441
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11442
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11443
|
+
-------------------------------------------------------------
|
|
11444
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
11445
|
+
-------------------------------------------------------------
|
|
11446
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 18:10:31 -0300
|
|
11447
|
+
Processing by StatusController#not_found_action as JSON
|
|
11448
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
11449
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 18:10:31 -0300
|
|
11450
|
+
Processing by StatusController#not_found_action as HTML
|
|
11451
|
+
Completed 404 Not Found in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
11452
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11453
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11454
|
+
------------------------------------------------------------------------
|
|
11455
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
11456
|
+
------------------------------------------------------------------------
|
|
11457
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 18:10:31 -0300
|
|
11458
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
11459
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
11460
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 18:10:31 -0300
|
|
11461
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
11462
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
11463
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11464
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11465
|
+
---------------------------------------------------------
|
|
11466
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
11467
|
+
---------------------------------------------------------
|
|
11468
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 18:10:31 -0300
|
|
11469
|
+
Processing by StatusController#error_action as JSON
|
|
11470
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
11471
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 18:10:31 -0300
|
|
11472
|
+
Processing by StatusController#error_action as HTML
|
|
11473
|
+
Completed 500 Internal Server Error in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
11474
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11475
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11476
|
+
-----------------------------------------------------------------
|
|
11477
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
11478
|
+
-----------------------------------------------------------------
|
|
11479
|
+
Rendered pages/_dummy.html.erb (0.3ms)
|
|
11480
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11481
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11482
|
+
---------------------------------------------
|
|
11483
|
+
ButtonTest: test_accept_options_as_attributes
|
|
11484
|
+
---------------------------------------------
|
|
11485
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11486
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11487
|
+
-------------------------------------------------------------
|
|
11488
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
11489
|
+
-------------------------------------------------------------
|
|
11490
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11491
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11492
|
+
---------------------------------------
|
|
11493
|
+
ButtonTest: test_use_the_value_as_label
|
|
11494
|
+
---------------------------------------
|
|
11495
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11496
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11497
|
+
---------------------------------------------------
|
|
11498
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
11499
|
+
---------------------------------------------------
|
|
11500
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11501
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11502
|
+
---------------------------------------------------------
|
|
11503
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
11504
|
+
---------------------------------------------------------
|
|
11505
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11506
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11507
|
+
----------------------------------------------------
|
|
11508
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
11509
|
+
----------------------------------------------------
|
|
11510
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11511
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
11512
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
11513
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
11514
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
11515
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
11516
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11517
|
+
----------------------------------------------------------------
|
|
11518
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
11519
|
+
----------------------------------------------------------------
|
|
11520
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 18:11:34 -0300
|
|
11521
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
11522
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
11523
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 18:11:34 -0300
|
|
11524
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
11525
|
+
Rendered public/422.html (1.4ms)
|
|
11526
|
+
Completed 401 Unauthorized in 7ms (Views: 6.9ms | ActiveRecord: 0.0ms)
|
|
11527
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11528
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11529
|
+
-------------------------------------------------------------
|
|
11530
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
11531
|
+
-------------------------------------------------------------
|
|
11532
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 18:11:34 -0300
|
|
11533
|
+
Processing by StatusController#forbidden_action as JSON
|
|
11534
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
11535
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 18:11:34 -0300
|
|
11536
|
+
Processing by StatusController#forbidden_action as HTML
|
|
11537
|
+
Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
11538
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11539
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11540
|
+
-------------------------------------------------------------
|
|
11541
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
11542
|
+
-------------------------------------------------------------
|
|
11543
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 18:11:34 -0300
|
|
11544
|
+
Processing by StatusController#not_found_action as JSON
|
|
11545
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
11546
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 18:11:34 -0300
|
|
11547
|
+
Processing by StatusController#not_found_action as HTML
|
|
11548
|
+
Completed 404 Not Found in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
11549
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11550
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11551
|
+
------------------------------------------------------------------------
|
|
11552
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
11553
|
+
------------------------------------------------------------------------
|
|
11554
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 18:11:34 -0300
|
|
11555
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
11556
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
11557
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 18:11:34 -0300
|
|
11558
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
11559
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
11560
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11561
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11562
|
+
---------------------------------------------------------
|
|
11563
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
11564
|
+
---------------------------------------------------------
|
|
11565
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 18:11:34 -0300
|
|
11566
|
+
Processing by StatusController#error_action as JSON
|
|
11567
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
11568
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 18:11:34 -0300
|
|
11569
|
+
Processing by StatusController#error_action as HTML
|
|
11570
|
+
Completed 500 Internal Server Error in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
11571
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11572
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11573
|
+
-----------------------------------------------------------------
|
|
11574
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
11575
|
+
-----------------------------------------------------------------
|
|
11576
|
+
Rendered pages/_dummy.html.erb (0.3ms)
|
|
11577
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11578
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11579
|
+
-----------------------------------------------------------------
|
|
11580
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
11581
|
+
-----------------------------------------------------------------
|
|
11582
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11583
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11584
|
+
------------------------------------------------------------
|
|
11585
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
11586
|
+
------------------------------------------------------------
|
|
11587
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11588
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11589
|
+
---------------------------------------------------------------------
|
|
11590
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
11591
|
+
---------------------------------------------------------------------
|
|
11592
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11593
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11594
|
+
---------------------------------------------
|
|
11595
|
+
ButtonTest: test_accept_options_as_attributes
|
|
11596
|
+
---------------------------------------------
|
|
11597
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11598
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11599
|
+
-------------------------------------------------------------
|
|
11600
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
11601
|
+
-------------------------------------------------------------
|
|
11602
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11603
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11604
|
+
---------------------------------------
|
|
11605
|
+
ButtonTest: test_use_the_value_as_label
|
|
11606
|
+
---------------------------------------
|
|
11607
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11608
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11609
|
+
---------------------------------------------------
|
|
11610
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
11611
|
+
---------------------------------------------------
|
|
11612
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11613
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11614
|
+
---------------------------------------------------------
|
|
11615
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
11616
|
+
---------------------------------------------------------
|
|
11617
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11618
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11619
|
+
----------------------------------------------------
|
|
11620
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
11621
|
+
----------------------------------------------------
|
|
11622
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11623
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
11624
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
11625
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
11626
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
11627
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
11628
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11629
|
+
---------------------------------------------
|
|
11630
|
+
ButtonTest: test_accept_options_as_attributes
|
|
11631
|
+
---------------------------------------------
|
|
11632
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11633
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11634
|
+
-------------------------------------------------------------
|
|
11635
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
11636
|
+
-------------------------------------------------------------
|
|
11637
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11638
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11639
|
+
---------------------------------------
|
|
11640
|
+
ButtonTest: test_use_the_value_as_label
|
|
11641
|
+
---------------------------------------
|
|
11642
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11643
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11644
|
+
-----------------------------------------------------------------
|
|
11645
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
11646
|
+
-----------------------------------------------------------------
|
|
11647
|
+
Rendered pages/_dummy.html.erb (0.3ms)
|
|
11648
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
11649
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
|
11650
|
+
[1m[36m (0.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
11651
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
11652
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
11653
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11654
|
+
---------------------------------------------------
|
|
11655
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
11656
|
+
---------------------------------------------------
|
|
11657
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11658
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11659
|
+
---------------------------------------------------------
|
|
11660
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
11661
|
+
---------------------------------------------------------
|
|
11662
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11663
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11664
|
+
----------------------------------------------------
|
|
11665
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
11666
|
+
----------------------------------------------------
|
|
11667
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11668
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11669
|
+
----------------------------------------------------------------
|
|
11670
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
11671
|
+
----------------------------------------------------------------
|
|
11672
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 18:15:17 -0300
|
|
11673
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
11674
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
11675
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 18:15:17 -0300
|
|
11676
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
11677
|
+
Completed 401 Unauthorized in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
|
|
11678
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11679
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11680
|
+
-------------------------------------------------------------
|
|
11681
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
11682
|
+
-------------------------------------------------------------
|
|
11683
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 18:15:17 -0300
|
|
11684
|
+
Processing by StatusController#forbidden_action as JSON
|
|
11685
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
11686
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 18:15:17 -0300
|
|
11687
|
+
Processing by StatusController#forbidden_action as HTML
|
|
11688
|
+
Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
11689
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11690
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11691
|
+
-------------------------------------------------------------
|
|
11692
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
11693
|
+
-------------------------------------------------------------
|
|
11694
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 18:15:17 -0300
|
|
11695
|
+
Processing by StatusController#not_found_action as JSON
|
|
11696
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
11697
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 18:15:17 -0300
|
|
11698
|
+
Processing by StatusController#not_found_action as HTML
|
|
11699
|
+
Completed 404 Not Found in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
11700
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11701
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11702
|
+
------------------------------------------------------------------------
|
|
11703
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
11704
|
+
------------------------------------------------------------------------
|
|
11705
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 18:15:17 -0300
|
|
11706
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
11707
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
11708
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 18:15:17 -0300
|
|
11709
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
11710
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
11711
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11712
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11713
|
+
---------------------------------------------------------
|
|
11714
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
11715
|
+
---------------------------------------------------------
|
|
11716
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 18:15:17 -0300
|
|
11717
|
+
Processing by StatusController#error_action as JSON
|
|
11718
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
11719
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 18:15:17 -0300
|
|
11720
|
+
Processing by StatusController#error_action as HTML
|
|
11721
|
+
Completed 500 Internal Server Error in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
11722
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11723
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11724
|
+
-----------------------------------------------------------------
|
|
11725
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
11726
|
+
-----------------------------------------------------------------
|
|
11727
|
+
Rendered pages/_dummy.html.erb (0.3ms)
|
|
11728
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11729
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11730
|
+
---------------------------------------------
|
|
11731
|
+
ButtonTest: test_accept_options_as_attributes
|
|
11732
|
+
---------------------------------------------
|
|
11733
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11734
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11735
|
+
-------------------------------------------------------------
|
|
11736
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
11737
|
+
-------------------------------------------------------------
|
|
11738
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11739
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11740
|
+
---------------------------------------
|
|
11741
|
+
ButtonTest: test_use_the_value_as_label
|
|
11742
|
+
---------------------------------------
|
|
11743
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11744
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11745
|
+
-----------------------------------------------------------------
|
|
11746
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
11747
|
+
-----------------------------------------------------------------
|
|
11748
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11749
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11750
|
+
------------------------------------------------------------
|
|
11751
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
11752
|
+
------------------------------------------------------------
|
|
11753
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11754
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11755
|
+
---------------------------------------------------------------------
|
|
11756
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
11757
|
+
---------------------------------------------------------------------
|
|
11758
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11759
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
11760
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
11761
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
11762
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
11763
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
11764
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11765
|
+
-----------------------------------------------------------------
|
|
11766
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
11767
|
+
-----------------------------------------------------------------
|
|
11768
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11769
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11770
|
+
------------------------------------------------------------
|
|
11771
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
11772
|
+
------------------------------------------------------------
|
|
11773
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11774
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11775
|
+
---------------------------------------------------------------------
|
|
11776
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
11777
|
+
---------------------------------------------------------------------
|
|
11778
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11779
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11780
|
+
----------------------------------------------------------------
|
|
11781
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
11782
|
+
----------------------------------------------------------------
|
|
11783
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 18:15:30 -0300
|
|
11784
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
11785
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
11786
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 18:15:30 -0300
|
|
11787
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
11788
|
+
Completed 401 Unauthorized in 6ms (Views: 6.1ms | ActiveRecord: 0.0ms)
|
|
11789
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11790
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11791
|
+
-------------------------------------------------------------
|
|
11792
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
11793
|
+
-------------------------------------------------------------
|
|
11794
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 18:15:30 -0300
|
|
11795
|
+
Processing by StatusController#forbidden_action as JSON
|
|
11796
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
11797
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 18:15:30 -0300
|
|
11798
|
+
Processing by StatusController#forbidden_action as HTML
|
|
11799
|
+
Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
11800
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11801
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11802
|
+
-------------------------------------------------------------
|
|
11803
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
11804
|
+
-------------------------------------------------------------
|
|
11805
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 18:15:30 -0300
|
|
11806
|
+
Processing by StatusController#not_found_action as JSON
|
|
11807
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
11808
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 18:15:30 -0300
|
|
11809
|
+
Processing by StatusController#not_found_action as HTML
|
|
11810
|
+
Completed 404 Not Found in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
11811
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11812
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11813
|
+
------------------------------------------------------------------------
|
|
11814
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
11815
|
+
------------------------------------------------------------------------
|
|
11816
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 18:15:30 -0300
|
|
11817
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
11818
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
11819
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 18:15:30 -0300
|
|
11820
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
11821
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
11822
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11823
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11824
|
+
---------------------------------------------------------
|
|
11825
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
11826
|
+
---------------------------------------------------------
|
|
11827
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 18:15:30 -0300
|
|
11828
|
+
Processing by StatusController#error_action as JSON
|
|
11829
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
11830
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 18:15:30 -0300
|
|
11831
|
+
Processing by StatusController#error_action as HTML
|
|
11832
|
+
Completed 500 Internal Server Error in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
|
11833
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11834
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11835
|
+
---------------------------------------------------
|
|
11836
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
11837
|
+
---------------------------------------------------
|
|
11838
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11839
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11840
|
+
---------------------------------------------------------
|
|
11841
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
11842
|
+
---------------------------------------------------------
|
|
11843
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11844
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11845
|
+
----------------------------------------------------
|
|
11846
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
11847
|
+
----------------------------------------------------
|
|
11848
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11849
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11850
|
+
---------------------------------------------
|
|
11851
|
+
ButtonTest: test_accept_options_as_attributes
|
|
11852
|
+
---------------------------------------------
|
|
11853
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11854
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11855
|
+
-------------------------------------------------------------
|
|
11856
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
11857
|
+
-------------------------------------------------------------
|
|
11858
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11859
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11860
|
+
---------------------------------------
|
|
11861
|
+
ButtonTest: test_use_the_value_as_label
|
|
11862
|
+
---------------------------------------
|
|
11863
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11864
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11865
|
+
-----------------------------------------------------------------
|
|
11866
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
11867
|
+
-----------------------------------------------------------------
|
|
11868
|
+
Rendered pages/_dummy.html.erb (0.3ms)
|
|
11869
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11870
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
11871
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
11872
|
+
[1m[36m (0.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
11873
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
11874
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
11875
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11876
|
+
---------------------------------------------
|
|
11877
|
+
ButtonTest: test_accept_options_as_attributes
|
|
11878
|
+
---------------------------------------------
|
|
11879
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11880
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11881
|
+
-------------------------------------------------------------
|
|
11882
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
11883
|
+
-------------------------------------------------------------
|
|
11884
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11885
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11886
|
+
---------------------------------------
|
|
11887
|
+
ButtonTest: test_use_the_value_as_label
|
|
11888
|
+
---------------------------------------
|
|
11889
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11890
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11891
|
+
-----------------------------------------------------------------
|
|
11892
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
11893
|
+
-----------------------------------------------------------------
|
|
11894
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11895
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11896
|
+
------------------------------------------------------------
|
|
11897
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
11898
|
+
------------------------------------------------------------
|
|
11899
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11900
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11901
|
+
---------------------------------------------------------------------
|
|
11902
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
11903
|
+
---------------------------------------------------------------------
|
|
11904
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11905
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11906
|
+
---------------------------------------------------
|
|
11907
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
11908
|
+
---------------------------------------------------
|
|
11909
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11910
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11911
|
+
---------------------------------------------------------
|
|
11912
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
11913
|
+
---------------------------------------------------------
|
|
11914
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11915
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11916
|
+
----------------------------------------------------
|
|
11917
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
11918
|
+
----------------------------------------------------
|
|
11919
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11920
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11921
|
+
----------------------------------------------------------------
|
|
11922
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
11923
|
+
----------------------------------------------------------------
|
|
11924
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 18:16:24 -0300
|
|
11925
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
11926
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
11927
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 18:16:24 -0300
|
|
11928
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
11929
|
+
Completed 401 Unauthorized in 6ms (Views: 6.0ms | ActiveRecord: 0.0ms)
|
|
11930
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11931
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11932
|
+
-------------------------------------------------------------
|
|
11933
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
11934
|
+
-------------------------------------------------------------
|
|
11935
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 18:16:24 -0300
|
|
11936
|
+
Processing by StatusController#forbidden_action as JSON
|
|
11937
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
11938
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 18:16:24 -0300
|
|
11939
|
+
Processing by StatusController#forbidden_action as HTML
|
|
11940
|
+
Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
11941
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11942
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11943
|
+
-------------------------------------------------------------
|
|
11944
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
11945
|
+
-------------------------------------------------------------
|
|
11946
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 18:16:24 -0300
|
|
11947
|
+
Processing by StatusController#not_found_action as JSON
|
|
11948
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
11949
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 18:16:24 -0300
|
|
11950
|
+
Processing by StatusController#not_found_action as HTML
|
|
11951
|
+
Completed 404 Not Found in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
11952
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11953
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11954
|
+
------------------------------------------------------------------------
|
|
11955
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
11956
|
+
------------------------------------------------------------------------
|
|
11957
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 18:16:24 -0300
|
|
11958
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
11959
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
11960
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 18:16:24 -0300
|
|
11961
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
11962
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
11963
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11964
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11965
|
+
---------------------------------------------------------
|
|
11966
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
11967
|
+
---------------------------------------------------------
|
|
11968
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 18:16:24 -0300
|
|
11969
|
+
Processing by StatusController#error_action as JSON
|
|
11970
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
11971
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 18:16:24 -0300
|
|
11972
|
+
Processing by StatusController#error_action as HTML
|
|
11973
|
+
Completed 500 Internal Server Error in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
11974
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11975
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11976
|
+
-----------------------------------------------------------------
|
|
11977
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
11978
|
+
-----------------------------------------------------------------
|
|
11979
|
+
Rendered pages/_dummy.html.erb (0.4ms)
|
|
11980
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
11981
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
11982
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
11983
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
11984
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
11985
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
11986
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
11987
|
+
-----------------------------------------------------------------
|
|
11988
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
11989
|
+
-----------------------------------------------------------------
|
|
11990
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11991
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11992
|
+
------------------------------------------------------------
|
|
11993
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
11994
|
+
------------------------------------------------------------
|
|
11995
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
11996
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
11997
|
+
---------------------------------------------------------------------
|
|
11998
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
11999
|
+
---------------------------------------------------------------------
|
|
12000
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12001
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12002
|
+
-----------------------------------------------------------------
|
|
12003
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
12004
|
+
-----------------------------------------------------------------
|
|
12005
|
+
Rendered pages/_dummy.html.erb (0.5ms)
|
|
12006
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
12007
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12008
|
+
---------------------------------------------
|
|
12009
|
+
ButtonTest: test_accept_options_as_attributes
|
|
12010
|
+
---------------------------------------------
|
|
12011
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12012
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12013
|
+
-------------------------------------------------------------
|
|
12014
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
12015
|
+
-------------------------------------------------------------
|
|
12016
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12017
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12018
|
+
---------------------------------------
|
|
12019
|
+
ButtonTest: test_use_the_value_as_label
|
|
12020
|
+
---------------------------------------
|
|
12021
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12022
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12023
|
+
----------------------------------------------------------------
|
|
12024
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
12025
|
+
----------------------------------------------------------------
|
|
12026
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 18:16:39 -0300
|
|
12027
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
12028
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
12029
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 18:16:39 -0300
|
|
12030
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
12031
|
+
Completed 401 Unauthorized in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
|
12032
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
12033
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12034
|
+
-------------------------------------------------------------
|
|
12035
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
12036
|
+
-------------------------------------------------------------
|
|
12037
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 18:16:39 -0300
|
|
12038
|
+
Processing by StatusController#forbidden_action as JSON
|
|
12039
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
12040
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 18:16:39 -0300
|
|
12041
|
+
Processing by StatusController#forbidden_action as HTML
|
|
12042
|
+
Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
12043
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12044
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12045
|
+
-------------------------------------------------------------
|
|
12046
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
12047
|
+
-------------------------------------------------------------
|
|
12048
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 18:16:39 -0300
|
|
12049
|
+
Processing by StatusController#not_found_action as JSON
|
|
12050
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
12051
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 18:16:39 -0300
|
|
12052
|
+
Processing by StatusController#not_found_action as HTML
|
|
12053
|
+
Completed 404 Not Found in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
|
12054
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
12055
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12056
|
+
------------------------------------------------------------------------
|
|
12057
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
12058
|
+
------------------------------------------------------------------------
|
|
12059
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 18:16:39 -0300
|
|
12060
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
12061
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
12062
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 18:16:39 -0300
|
|
12063
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
12064
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
|
12065
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12066
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12067
|
+
---------------------------------------------------------
|
|
12068
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
12069
|
+
---------------------------------------------------------
|
|
12070
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 18:16:39 -0300
|
|
12071
|
+
Processing by StatusController#error_action as JSON
|
|
12072
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
12073
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 18:16:39 -0300
|
|
12074
|
+
Processing by StatusController#error_action as HTML
|
|
12075
|
+
Completed 500 Internal Server Error in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
12076
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
12077
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12078
|
+
---------------------------------------------------
|
|
12079
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
12080
|
+
---------------------------------------------------
|
|
12081
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
12082
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12083
|
+
---------------------------------------------------------
|
|
12084
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
12085
|
+
---------------------------------------------------------
|
|
12086
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12087
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12088
|
+
----------------------------------------------------
|
|
12089
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
12090
|
+
----------------------------------------------------
|
|
12091
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12092
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
12093
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
12094
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
12095
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
12096
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
12097
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
12098
|
+
-----------------------------------------------------------------
|
|
12099
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
12100
|
+
-----------------------------------------------------------------
|
|
12101
|
+
Rendered pages/_dummy.html.erb (0.3ms)
|
|
12102
|
+
Rendered pages/index.html.erb within layouts/application (9.6ms)
|
|
12103
|
+
Rendered pages/variable.html.erb within layouts/application (0.6ms)
|
|
12104
|
+
Rendered pages/empty.html.erb within layouts/application (0.4ms)
|
|
12105
|
+
Rendered pages/defined.html.erb within layouts/application (0.3ms)
|
|
12106
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
12107
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12108
|
+
----------------------------------------------------------------
|
|
12109
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
12110
|
+
----------------------------------------------------------------
|
|
12111
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 18:17:06 -0300
|
|
12112
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
12113
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
12114
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 18:17:06 -0300
|
|
12115
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
12116
|
+
Completed 401 Unauthorized in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
|
12117
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
12118
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
12119
|
+
-------------------------------------------------------------
|
|
12120
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
12121
|
+
-------------------------------------------------------------
|
|
12122
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 18:17:06 -0300
|
|
12123
|
+
Processing by StatusController#forbidden_action as JSON
|
|
12124
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
12125
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 18:17:06 -0300
|
|
12126
|
+
Processing by StatusController#forbidden_action as HTML
|
|
12127
|
+
Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
12128
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12129
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
12130
|
+
-------------------------------------------------------------
|
|
12131
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
12132
|
+
-------------------------------------------------------------
|
|
12133
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 18:17:06 -0300
|
|
12134
|
+
Processing by StatusController#not_found_action as JSON
|
|
12135
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
12136
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 18:17:06 -0300
|
|
12137
|
+
Processing by StatusController#not_found_action as HTML
|
|
12138
|
+
Completed 404 Not Found in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
|
12139
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12140
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12141
|
+
------------------------------------------------------------------------
|
|
12142
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
12143
|
+
------------------------------------------------------------------------
|
|
12144
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 18:17:06 -0300
|
|
12145
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
12146
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
12147
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 18:17:06 -0300
|
|
12148
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
12149
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
12150
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
12151
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12152
|
+
---------------------------------------------------------
|
|
12153
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
12154
|
+
---------------------------------------------------------
|
|
12155
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 18:17:06 -0300
|
|
12156
|
+
Processing by StatusController#error_action as JSON
|
|
12157
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
12158
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 18:17:06 -0300
|
|
12159
|
+
Processing by StatusController#error_action as HTML
|
|
12160
|
+
Completed 500 Internal Server Error in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
12161
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
12162
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12163
|
+
---------------------------------------------
|
|
12164
|
+
ButtonTest: test_accept_options_as_attributes
|
|
12165
|
+
---------------------------------------------
|
|
12166
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12167
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12168
|
+
-------------------------------------------------------------
|
|
12169
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
12170
|
+
-------------------------------------------------------------
|
|
12171
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12172
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12173
|
+
---------------------------------------
|
|
12174
|
+
ButtonTest: test_use_the_value_as_label
|
|
12175
|
+
---------------------------------------
|
|
12176
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12177
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12178
|
+
---------------------------------------------------
|
|
12179
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
12180
|
+
---------------------------------------------------
|
|
12181
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12182
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12183
|
+
---------------------------------------------------------
|
|
12184
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
12185
|
+
---------------------------------------------------------
|
|
12186
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12187
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12188
|
+
----------------------------------------------------
|
|
12189
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
12190
|
+
----------------------------------------------------
|
|
12191
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12192
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12193
|
+
-----------------------------------------------------------------
|
|
12194
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
12195
|
+
-----------------------------------------------------------------
|
|
12196
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12197
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12198
|
+
------------------------------------------------------------
|
|
12199
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
12200
|
+
------------------------------------------------------------
|
|
12201
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12202
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12203
|
+
---------------------------------------------------------------------
|
|
12204
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
12205
|
+
---------------------------------------------------------------------
|
|
12206
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12207
|
+
[1m[36m (0.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
12208
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
12209
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
12210
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
|
12211
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
12212
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
12213
|
+
-----------------------------------------------------------------
|
|
12214
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
12215
|
+
-----------------------------------------------------------------
|
|
12216
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12217
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12218
|
+
------------------------------------------------------------
|
|
12219
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
12220
|
+
------------------------------------------------------------
|
|
12221
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12222
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12223
|
+
---------------------------------------------------------------------
|
|
12224
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
12225
|
+
---------------------------------------------------------------------
|
|
12226
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12227
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12228
|
+
---------------------------------------------------
|
|
12229
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
12230
|
+
---------------------------------------------------
|
|
12231
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12232
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12233
|
+
---------------------------------------------------------
|
|
12234
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
12235
|
+
---------------------------------------------------------
|
|
12236
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12237
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12238
|
+
----------------------------------------------------
|
|
12239
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
12240
|
+
----------------------------------------------------
|
|
12241
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12242
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12243
|
+
----------------------------------------------------------------
|
|
12244
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
12245
|
+
----------------------------------------------------------------
|
|
12246
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 18:21:07 -0300
|
|
12247
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
12248
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
12249
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 18:21:07 -0300
|
|
12250
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
12251
|
+
Completed 401 Unauthorized in 6ms (Views: 5.7ms | ActiveRecord: 0.0ms)
|
|
12252
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
12253
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12254
|
+
-------------------------------------------------------------
|
|
12255
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
12256
|
+
-------------------------------------------------------------
|
|
12257
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 18:21:07 -0300
|
|
12258
|
+
Processing by StatusController#forbidden_action as JSON
|
|
12259
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
12260
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 18:21:07 -0300
|
|
12261
|
+
Processing by StatusController#forbidden_action as HTML
|
|
12262
|
+
Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
12263
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12264
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12265
|
+
-------------------------------------------------------------
|
|
12266
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
12267
|
+
-------------------------------------------------------------
|
|
12268
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 18:21:07 -0300
|
|
12269
|
+
Processing by StatusController#not_found_action as JSON
|
|
12270
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
12271
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 18:21:07 -0300
|
|
12272
|
+
Processing by StatusController#not_found_action as HTML
|
|
12273
|
+
Completed 404 Not Found in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
|
12274
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
12275
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12276
|
+
------------------------------------------------------------------------
|
|
12277
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
12278
|
+
------------------------------------------------------------------------
|
|
12279
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 18:21:07 -0300
|
|
12280
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
12281
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
12282
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 18:21:07 -0300
|
|
12283
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
12284
|
+
Completed 422 Unprocessable Entity in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
12285
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12286
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12287
|
+
---------------------------------------------------------
|
|
12288
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
12289
|
+
---------------------------------------------------------
|
|
12290
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 18:21:07 -0300
|
|
12291
|
+
Processing by StatusController#error_action as JSON
|
|
12292
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
12293
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 18:21:07 -0300
|
|
12294
|
+
Processing by StatusController#error_action as HTML
|
|
12295
|
+
Completed 500 Internal Server Error in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
|
12296
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12297
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12298
|
+
---------------------------------------------
|
|
12299
|
+
ButtonTest: test_accept_options_as_attributes
|
|
12300
|
+
---------------------------------------------
|
|
12301
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12302
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12303
|
+
-------------------------------------------------------------
|
|
12304
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
12305
|
+
-------------------------------------------------------------
|
|
12306
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12307
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12308
|
+
---------------------------------------
|
|
12309
|
+
ButtonTest: test_use_the_value_as_label
|
|
12310
|
+
---------------------------------------
|
|
12311
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12312
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12313
|
+
-----------------------------------------------------------------
|
|
12314
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
12315
|
+
-----------------------------------------------------------------
|
|
12316
|
+
Rendered pages/_dummy.html.erb (0.3ms)
|
|
12317
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
12318
|
+
[1m[36m (0.3ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
|
12319
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
|
12320
|
+
[1m[36m (0.1ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
|
12321
|
+
[1m[35m (0.0ms)[0m SELECT version FROM "schema_migrations"
|
|
12322
|
+
[1m[36m (0.1ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('0')[0m
|
|
12323
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
12324
|
+
-----------------------------------------------------------------
|
|
12325
|
+
SeoTest: test_populate_meta_using_the_path_of_the_template_as_key
|
|
12326
|
+
-----------------------------------------------------------------
|
|
12327
|
+
Rendered pages/_dummy.html.erb (0.4ms)
|
|
12328
|
+
Rendered pages/index.html.erb within layouts/application (12.6ms)
|
|
12329
|
+
Rendered pages/variable.html.erb within layouts/application (0.6ms)
|
|
12330
|
+
Rendered pages/empty.html.erb within layouts/application (0.6ms)
|
|
12331
|
+
Rendered pages/defined.html.erb within layouts/application (0.4ms)
|
|
12332
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
12333
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12334
|
+
-----------------------------------------------------------------
|
|
12335
|
+
ActiveTrailTest: test_return_false_if_path_is_not_in_active_trail
|
|
12336
|
+
-----------------------------------------------------------------
|
|
12337
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12338
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12339
|
+
------------------------------------------------------------
|
|
12340
|
+
ActiveTrailTest: test_return_true_if_path_is_in_active_trail
|
|
12341
|
+
------------------------------------------------------------
|
|
12342
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12343
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12344
|
+
---------------------------------------------------------------------
|
|
12345
|
+
ActiveTrailTest: test_return_true_if_path_is_the_same_as_active_trail
|
|
12346
|
+
---------------------------------------------------------------------
|
|
12347
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12348
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12349
|
+
---------------------------------------------------
|
|
12350
|
+
ContentTagIfTest: test_accept_options_as_attributes
|
|
12351
|
+
---------------------------------------------------
|
|
12352
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12353
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12354
|
+
---------------------------------------------------------
|
|
12355
|
+
ContentTagIfTest: test_not_show_tag_if_condition_if_false
|
|
12356
|
+
---------------------------------------------------------
|
|
12357
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12358
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12359
|
+
----------------------------------------------------
|
|
12360
|
+
ContentTagIfTest: test_show_tag_if_condition_is_true
|
|
12361
|
+
----------------------------------------------------
|
|
12362
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
12363
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12364
|
+
---------------------------------------------
|
|
12365
|
+
ButtonTest: test_accept_options_as_attributes
|
|
12366
|
+
---------------------------------------------
|
|
12367
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12368
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12369
|
+
-------------------------------------------------------------
|
|
12370
|
+
ButtonTest: test_use_button_with_span_inside_instead_of_input
|
|
12371
|
+
-------------------------------------------------------------
|
|
12372
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12373
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12374
|
+
---------------------------------------
|
|
12375
|
+
ButtonTest: test_use_the_value_as_label
|
|
12376
|
+
---------------------------------------
|
|
12377
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12378
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
12379
|
+
----------------------------------------------------------------
|
|
12380
|
+
StatusTest: test_respond_with_status_401_if_unauthorized_is_call
|
|
12381
|
+
----------------------------------------------------------------
|
|
12382
|
+
Started GET "/unauthorized.json" for 127.0.0.1 at 2014-07-11 18:32:37 -0300
|
|
12383
|
+
Processing by StatusController#unauthorized_action as JSON
|
|
12384
|
+
Completed 401 Unauthorized in 0ms (ActiveRecord: 0.0ms)
|
|
12385
|
+
Started GET "/unauthorized" for 127.0.0.1 at 2014-07-11 18:32:37 -0300
|
|
12386
|
+
Processing by StatusController#unauthorized_action as HTML
|
|
12387
|
+
Completed 401 Unauthorized in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
|
12388
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
12389
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12390
|
+
-------------------------------------------------------------
|
|
12391
|
+
StatusTest: test_respond_with_status_403_if_forbidden_is_call
|
|
12392
|
+
-------------------------------------------------------------
|
|
12393
|
+
Started GET "/forbidden.json" for 127.0.0.1 at 2014-07-11 18:32:37 -0300
|
|
12394
|
+
Processing by StatusController#forbidden_action as JSON
|
|
12395
|
+
Completed 403 Forbidden in 0ms (ActiveRecord: 0.0ms)
|
|
12396
|
+
Started GET "/forbidden" for 127.0.0.1 at 2014-07-11 18:32:37 -0300
|
|
12397
|
+
Processing by StatusController#forbidden_action as HTML
|
|
12398
|
+
Completed 403 Forbidden in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
12399
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12400
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
12401
|
+
-------------------------------------------------------------
|
|
12402
|
+
StatusTest: test_respond_with_status_404_if_not_found_is_call
|
|
12403
|
+
-------------------------------------------------------------
|
|
12404
|
+
Started GET "/not_found.json" for 127.0.0.1 at 2014-07-11 18:32:37 -0300
|
|
12405
|
+
Processing by StatusController#not_found_action as JSON
|
|
12406
|
+
Completed 404 Not Found in 0ms (ActiveRecord: 0.0ms)
|
|
12407
|
+
Started GET "/not_found" for 127.0.0.1 at 2014-07-11 18:32:37 -0300
|
|
12408
|
+
Processing by StatusController#not_found_action as HTML
|
|
12409
|
+
Completed 404 Not Found in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
12410
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
|
12411
|
+
[1m[35m (0.0ms)[0m begin transaction
|
|
12412
|
+
------------------------------------------------------------------------
|
|
12413
|
+
StatusTest: test_respond_with_status_422_if_unprocessable_entity_is_call
|
|
12414
|
+
------------------------------------------------------------------------
|
|
12415
|
+
Started GET "/unprocessable_entity.json" for 127.0.0.1 at 2014-07-11 18:32:37 -0300
|
|
12416
|
+
Processing by StatusController#unprocessable_entity_action as JSON
|
|
12417
|
+
Completed 422 Unprocessable Entity in 0ms (ActiveRecord: 0.0ms)
|
|
12418
|
+
Started GET "/unprocessable_entity" for 127.0.0.1 at 2014-07-11 18:32:37 -0300
|
|
12419
|
+
Processing by StatusController#unprocessable_entity_action as HTML
|
|
12420
|
+
Completed 422 Unprocessable Entity in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
|
12421
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|
|
12422
|
+
[1m[35m (0.1ms)[0m begin transaction
|
|
12423
|
+
---------------------------------------------------------
|
|
12424
|
+
StatusTest: test_respond_with_status_500_if_error_is_call
|
|
12425
|
+
---------------------------------------------------------
|
|
12426
|
+
Started GET "/error.json" for 127.0.0.1 at 2014-07-11 18:32:37 -0300
|
|
12427
|
+
Processing by StatusController#error_action as JSON
|
|
12428
|
+
Completed 500 Internal Server Error in 0ms (ActiveRecord: 0.0ms)
|
|
12429
|
+
Started GET "/error" for 127.0.0.1 at 2014-07-11 18:32:37 -0300
|
|
12430
|
+
Processing by StatusController#error_action as HTML
|
|
12431
|
+
Completed 500 Internal Server Error in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
|
12432
|
+
[1m[36m (0.0ms)[0m [1mrollback transaction[0m
|