tuning 4.0.1.1 → 4.0.1.2

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1230f719f8a1a88ec9c4a108293e46a6ea56b9a0
4
- data.tar.gz: 2c9bbe5ab5687f1d3ae37d581ba9e346f57bd2d9
3
+ metadata.gz: 79882765907f92915179dc3d6ef85b6d3c1f4de3
4
+ data.tar.gz: 9c9b4c01138eaaf35b7a19a4747e7ad5df416953
5
5
  SHA512:
6
- metadata.gz: 58d2496b78f1669c76e7b5c237e3b3d7f9f1cd7b81d7e9acf8689c8edad3861b3cd5645ed3a62ca1c7f21f672e958657ce1a28f907f220ed009bc96a204c11cd
7
- data.tar.gz: dc88ac5caee3427896c8f5a1720f01be64bc0ab5c4acd099041afce424724722a59b4f0164ad27d9de6af3529314ca522845e8b8f0289976a5bce7621b3f6d2b
6
+ metadata.gz: dc0a003d4a1efcf21cd705c5b37734348c4fca1835a8c3942b0cd57b72bbd042c45509e46df30ddf380823742a7a59a9fff8097d101ce4e4348f413e0056748d
7
+ data.tar.gz: ad3d0d0c3f4d21f70b4305c283f62dfba42d00a91a2d073aa772639036ec692d26a22b5508038cf50bb8fa2b0cb88d0892e6679e603eda2d6e985d3c350b7842
@@ -7,19 +7,15 @@ module Tuning
7
7
  class Ruby
8
8
 
9
9
  def call(template)
10
- <<-STRING
11
- output = begin
12
- #{template.source}
13
- end
14
- output#{suffix(template.type.symbol)}
15
- STRING
16
- end
17
-
18
- private
19
-
20
- def suffix(type)
21
- if %i(json xml).include?(type)
22
- ".to_#{type}"
10
+ if template.type.json?
11
+ <<-STRING
12
+ output = begin
13
+ #{template.source}
14
+ end
15
+ output.to_json
16
+ STRING
17
+ else
18
+ template.source
23
19
  end
24
20
  end
25
21
 
@@ -13,7 +13,7 @@ module Tuning
13
13
 
14
14
  def nilify_blank_attributes
15
15
  attributes.each do |column, value|
16
- if value.is_a? String and value.blank?
16
+ if value.is_a?(String) and value.blank?
17
17
  self[column] = nil
18
18
  end
19
19
  end
@@ -1,6 +1,7 @@
1
1
  en:
2
2
  errors:
3
3
  messages:
4
+ uncountable: "can't be count"
4
5
  too_easy: "is too easy"
5
6
  too_many: "must have maximum %{count}"
6
7
  too_few: "must have minimum %{count}"
@@ -1,6 +1,7 @@
1
1
  es:
2
2
  errors:
3
3
  messages:
4
+ uncountable: "no puede contarse"
4
5
  too_easy: "es muy fácil"
5
6
  too_many: "debe tener máximo %{count}"
6
7
  too_few: "debe tener mínimo %{count}"
@@ -47,5 +47,9 @@ module Tuning
47
47
  end
48
48
  end
49
49
 
50
+ initializer 'tuning.i18n' do
51
+ I18n.load_path += Dir[File.expand_path('../locales/*.yml', __FILE__)]
52
+ end
53
+
50
54
  end
51
55
  end
@@ -1,5 +1,5 @@
1
1
  module Tuning
2
2
 
3
- VERSION = '4.0.1.1'
3
+ VERSION = '4.0.1.2'
4
4
 
5
5
  end
@@ -39,4 +39,25 @@ WHERE c.contype = 'f'
39
39
  AND t1.relname = 'users'
40
40
  AND t3.nspname = ANY (current_schemas(false))
41
41
  ORDER BY c.conname
42
+ 
43
+  (2.8ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
44
+  (12.1ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
45
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
46
+ Migrating to CreateUsers (20161020200126)
47
+  (0.2ms) BEGIN
48
+  (8.5ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
49
+ SQL (0.3ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20161020200126"]]
50
+  (0.5ms) COMMIT
51
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
52
+  (1.9ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
53
+ FROM pg_constraint c
54
+ JOIN pg_class t1 ON c.conrelid = t1.oid
55
+ JOIN pg_class t2 ON c.confrelid = t2.oid
56
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
57
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
58
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
59
+ WHERE c.contype = 'f'
60
+ AND t1.relname = 'users'
61
+ AND t3.nspname = ANY (current_schemas(false))
62
+ ORDER BY c.conname
42
63
  
@@ -3439,3 +3439,3127 @@ WHERE c.contype = 'f'
3439
3439
  AND t3.nspname = ANY (current_schemas(false))
3440
3440
  ORDER BY c.conname
3441
3441
  
3442
+ ActiveRecord::SchemaMigration Load (26.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
3443
+  (0.2ms) BEGIN
3444
+ -----------------------------
3445
+ HelperTest: test_active_trail
3446
+ -----------------------------
3447
+  (0.1ms) ROLLBACK
3448
+  (0.1ms) BEGIN
3449
+ -------------------------------
3450
+ HelperTest: test_content_tag_if
3451
+ -------------------------------
3452
+  (0.2ms) ROLLBACK
3453
+  (0.1ms) BEGIN
3454
+ --------------------------
3455
+ HelperTest: test_extending
3456
+ --------------------------
3457
+ Rendered layouts/application.html.erb (0.3ms)
3458
+ Rendered layouts/market.html.erb (7.5ms)
3459
+  (0.2ms) ROLLBACK
3460
+  (0.1ms) BEGIN
3461
+ ------------------------------
3462
+ MailerTest: test_normalization
3463
+ ------------------------------
3464
+ Rendered user_mailer/invite.text.erb (0.3ms)
3465
+
3466
+ UserMailer#invite: processed outbound mail in 16.0ms
3467
+  (0.2ms) ROLLBACK
3468
+  (0.1ms) BEGIN
3469
+ ----------------------
3470
+ ViewTest: test_handler
3471
+ ----------------------
3472
+  (0.2ms) SAVEPOINT active_record_1
3473
+ SQL (13.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 17:32:34.113448"], ["updated_at", "2016-12-15 17:32:34.113448"]]
3474
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3475
+  (0.1ms) SAVEPOINT active_record_1
3476
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 17:32:34.131004"], ["updated_at", "2016-12-15 17:32:34.131004"]]
3477
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3478
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 14:32:34 -0300
3479
+ Processing by UsersController#index as JSON
3480
+ User Load (0.3ms) SELECT "users".* FROM "users"
3481
+ Rendered users/index.json.ruby (1.2ms)
3482
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.3ms)
3483
+ Started GET "/users.xml" for 127.0.0.1 at 2016-12-15 14:32:34 -0300
3484
+ Processing by UsersController#index as XML
3485
+ User Load (0.2ms) SELECT "users".* FROM "users"
3486
+ Rendered users/index.xml.ruby (10.2ms)
3487
+ Completed 200 OK in 13ms (Views: 13.0ms | ActiveRecord: 0.2ms)
3488
+  (0.4ms) ROLLBACK
3489
+  (0.1ms) BEGIN
3490
+ ------------------------------
3491
+ RecordTest: test_nilify_blanks
3492
+ ------------------------------
3493
+  (0.1ms) SAVEPOINT active_record_1
3494
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 17:32:34.166878"], ["updated_at", "2016-12-15 17:32:34.166878"]]
3495
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3496
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 3]]
3497
+  (0.2ms) ROLLBACK
3498
+  (0.1ms) BEGIN
3499
+ -------------------------
3500
+ RecordTest: test_validate
3501
+ -------------------------
3502
+  (0.1ms) ROLLBACK
3503
+  (0.1ms) BEGIN
3504
+ -------------------------------
3505
+ ValidationTest: test_complexity
3506
+ -------------------------------
3507
+  (0.1ms) ROLLBACK
3508
+  (0.1ms) BEGIN
3509
+ --------------------------
3510
+ ValidationTest: test_count
3511
+ --------------------------
3512
+  (0.1ms) ROLLBACK
3513
+  (0.1ms) BEGIN
3514
+ -------------------------
3515
+ ValidationTest: test_time
3516
+ -------------------------
3517
+  (0.2ms) ROLLBACK
3518
+  (0.1ms) BEGIN
3519
+ ----------------------------
3520
+ ValidationTest: test_methods
3521
+ ----------------------------
3522
+  (0.1ms) ROLLBACK
3523
+  (0.1ms) BEGIN
3524
+ ---------------------------
3525
+ ControllerTest: test_render
3526
+ ---------------------------
3527
+  (0.1ms) ROLLBACK
3528
+  (0.1ms) BEGIN
3529
+ ------------------------------
3530
+ ControllerTest: test_callbacks
3531
+ ------------------------------
3532
+  (0.1ms) ROLLBACK
3533
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
3534
+  (0.2ms) BEGIN
3535
+ ------------------------------
3536
+ RecordTest: test_nilify_blanks
3537
+ ------------------------------
3538
+  (0.2ms) SAVEPOINT active_record_1
3539
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 17:42:39.345891"], ["updated_at", "2016-12-15 17:42:39.345891"]]
3540
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3541
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 4]]
3542
+  (0.2ms) ROLLBACK
3543
+  (0.1ms) BEGIN
3544
+ -------------------------
3545
+ RecordTest: test_validate
3546
+ -------------------------
3547
+  (0.1ms) ROLLBACK
3548
+  (0.1ms) BEGIN
3549
+ -------------------------------
3550
+ HelperTest: test_content_tag_if
3551
+ -------------------------------
3552
+  (0.1ms) ROLLBACK
3553
+  (0.1ms) BEGIN
3554
+ --------------------------
3555
+ HelperTest: test_extending
3556
+ --------------------------
3557
+ Rendered layouts/application.html.erb (0.2ms)
3558
+ Rendered layouts/market.html.erb (7.2ms)
3559
+  (0.2ms) ROLLBACK
3560
+  (0.1ms) BEGIN
3561
+ -----------------------------
3562
+ HelperTest: test_active_trail
3563
+ -----------------------------
3564
+  (0.1ms) ROLLBACK
3565
+  (0.1ms) BEGIN
3566
+ -------------------------------
3567
+ ValidationTest: test_complexity
3568
+ -------------------------------
3569
+  (0.2ms) ROLLBACK
3570
+  (0.1ms) BEGIN
3571
+ -------------------------
3572
+ ValidationTest: test_time
3573
+ -------------------------
3574
+  (0.1ms) ROLLBACK
3575
+  (0.1ms) BEGIN
3576
+ --------------------------
3577
+ ValidationTest: test_count
3578
+ --------------------------
3579
+  (0.1ms) ROLLBACK
3580
+  (0.1ms) BEGIN
3581
+ ----------------------------
3582
+ ValidationTest: test_methods
3583
+ ----------------------------
3584
+  (0.1ms) ROLLBACK
3585
+  (0.1ms) BEGIN
3586
+ ------------------------------
3587
+ MailerTest: test_normalization
3588
+ ------------------------------
3589
+ Rendered user_mailer/invite.text.erb (0.3ms)
3590
+
3591
+ UserMailer#invite: processed outbound mail in 10.0ms
3592
+  (0.3ms) ROLLBACK
3593
+  (0.1ms) BEGIN
3594
+ ---------------------------
3595
+ ControllerTest: test_render
3596
+ ---------------------------
3597
+  (0.1ms) ROLLBACK
3598
+  (0.1ms) BEGIN
3599
+ ------------------------------
3600
+ ControllerTest: test_callbacks
3601
+ ------------------------------
3602
+  (0.1ms) ROLLBACK
3603
+  (0.1ms) BEGIN
3604
+ ----------------------
3605
+ ViewTest: test_handler
3606
+ ----------------------
3607
+  (0.1ms) SAVEPOINT active_record_1
3608
+  (0.5ms) ROLLBACK TO SAVEPOINT active_record_1
3609
+  (0.1ms) SAVEPOINT active_record_1
3610
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3611
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 14:42:39 -0300
3612
+ Processing by UsersController#index as JSON
3613
+ User Load (0.3ms) SELECT "users".* FROM "users"
3614
+ Rendered users/index.json.ruby (0.9ms)
3615
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.3ms)
3616
+  (0.2ms) ROLLBACK
3617
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3618
+  (0.2ms) BEGIN
3619
+ ----------------------
3620
+ ViewTest: test_handler
3621
+ ----------------------
3622
+  (0.1ms) SAVEPOINT active_record_1
3623
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 17:45:28.485056"], ["updated_at", "2016-12-15 17:45:28.485056"]]
3624
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3625
+  (0.1ms) SAVEPOINT active_record_1
3626
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 17:45:28.488259"], ["updated_at", "2016-12-15 17:45:28.488259"]]
3627
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3628
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 14:45:28 -0300
3629
+ Processing by UsersController#index as JSON
3630
+ User Load (0.6ms) SELECT "users".* FROM "users"
3631
+ Rendered users/index.json.ruby (2.7ms)
3632
+ Completed 200 OK in 17ms (Views: 15.5ms | ActiveRecord: 0.6ms)
3633
+ Started GET "/users.xml" for 127.0.0.1 at 2016-12-15 14:45:28 -0300
3634
+ Processing by UsersController#index as XML
3635
+ User Load (0.3ms) SELECT "users".* FROM "users"
3636
+ Rendered users/index.xml.ruby (8.9ms)
3637
+ Completed 200 OK in 12ms (Views: 11.8ms | ActiveRecord: 0.3ms)
3638
+  (0.3ms) ROLLBACK
3639
+  (0.1ms) BEGIN
3640
+ -------------------------------
3641
+ HelperTest: test_content_tag_if
3642
+ -------------------------------
3643
+  (0.2ms) ROLLBACK
3644
+  (0.1ms) BEGIN
3645
+ --------------------------
3646
+ HelperTest: test_extending
3647
+ --------------------------
3648
+ Rendered layouts/application.html.erb (0.3ms)
3649
+ Rendered layouts/market.html.erb (7.5ms)
3650
+  (0.2ms) ROLLBACK
3651
+  (0.1ms) BEGIN
3652
+ -----------------------------
3653
+ HelperTest: test_active_trail
3654
+ -----------------------------
3655
+  (0.1ms) ROLLBACK
3656
+  (0.1ms) BEGIN
3657
+ ---------------------------
3658
+ ControllerTest: test_render
3659
+ ---------------------------
3660
+  (0.1ms) ROLLBACK
3661
+  (0.1ms) BEGIN
3662
+ ------------------------------
3663
+ ControllerTest: test_callbacks
3664
+ ------------------------------
3665
+  (0.1ms) ROLLBACK
3666
+  (0.2ms) BEGIN
3667
+ ------------------------------
3668
+ RecordTest: test_nilify_blanks
3669
+ ------------------------------
3670
+  (0.1ms) SAVEPOINT active_record_1
3671
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 17:45:28.556058"], ["updated_at", "2016-12-15 17:45:28.556058"]]
3672
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3673
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 7]]
3674
+  (0.1ms) ROLLBACK
3675
+  (0.1ms) BEGIN
3676
+ -------------------------
3677
+ RecordTest: test_validate
3678
+ -------------------------
3679
+  (0.1ms) ROLLBACK
3680
+  (0.1ms) BEGIN
3681
+ ------------------------------
3682
+ MailerTest: test_normalization
3683
+ ------------------------------
3684
+ Rendered user_mailer/invite.text.erb (0.3ms)
3685
+
3686
+ UserMailer#invite: processed outbound mail in 13.6ms
3687
+  (0.2ms) ROLLBACK
3688
+  (0.1ms) BEGIN
3689
+ -------------------------
3690
+ ValidationTest: test_time
3691
+ -------------------------
3692
+  (0.1ms) ROLLBACK
3693
+  (0.1ms) BEGIN
3694
+ -------------------------------
3695
+ ValidationTest: test_complexity
3696
+ -------------------------------
3697
+  (0.1ms) ROLLBACK
3698
+  (0.1ms) BEGIN
3699
+ --------------------------
3700
+ ValidationTest: test_count
3701
+ --------------------------
3702
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3703
+  (0.2ms) BEGIN
3704
+ ----------------------
3705
+ ViewTest: test_handler
3706
+ ----------------------
3707
+  (0.1ms) SAVEPOINT active_record_1
3708
+ SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 18:54:36.212388"], ["updated_at", "2016-12-15 18:54:36.212388"]]
3709
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3710
+  (0.1ms) SAVEPOINT active_record_1
3711
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 18:54:36.216564"], ["updated_at", "2016-12-15 18:54:36.216564"]]
3712
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3713
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 15:54:36 -0300
3714
+ Processing by UsersController#index as JSON
3715
+ User Load (0.5ms) SELECT "users".* FROM "users"
3716
+ Rendered users/index.json.ruby (2.1ms)
3717
+ Completed 200 OK in 11ms (Views: 10.5ms | ActiveRecord: 0.5ms)
3718
+ Started GET "/users.xml" for 127.0.0.1 at 2016-12-15 15:54:36 -0300
3719
+ Processing by UsersController#index as XML
3720
+ User Load (0.3ms) SELECT "users".* FROM "users"
3721
+ Rendered users/index.xml.ruby (13.3ms)
3722
+ Completed 200 OK in 17ms (Views: 16.1ms | ActiveRecord: 0.3ms)
3723
+  (0.3ms) ROLLBACK
3724
+  (0.1ms) BEGIN
3725
+ --------------------------
3726
+ HelperTest: test_extending
3727
+ --------------------------
3728
+ Rendered layouts/application.html.erb (0.3ms)
3729
+ Rendered layouts/market.html.erb (8.3ms)
3730
+  (0.2ms) ROLLBACK
3731
+  (0.1ms) BEGIN
3732
+ -----------------------------
3733
+ HelperTest: test_active_trail
3734
+ -----------------------------
3735
+  (0.1ms) ROLLBACK
3736
+  (0.1ms) BEGIN
3737
+ -------------------------------
3738
+ HelperTest: test_content_tag_if
3739
+ -------------------------------
3740
+  (0.1ms) ROLLBACK
3741
+  (0.1ms) BEGIN
3742
+ -------------------------------
3743
+ ValidationTest: test_complexity
3744
+ -------------------------------
3745
+  (0.3ms) ROLLBACK
3746
+  (0.2ms) BEGIN
3747
+ --------------------------
3748
+ ValidationTest: test_count
3749
+ --------------------------
3750
+  (0.1ms) ROLLBACK
3751
+  (0.1ms) BEGIN
3752
+ ----------------------------
3753
+ ValidationTest: test_methods
3754
+ ----------------------------
3755
+  (0.1ms) ROLLBACK
3756
+  (0.1ms) BEGIN
3757
+ -------------------------
3758
+ ValidationTest: test_time
3759
+ -------------------------
3760
+  (0.2ms) ROLLBACK
3761
+  (0.1ms) BEGIN
3762
+ ------------------------------
3763
+ RecordTest: test_nilify_blanks
3764
+ ------------------------------
3765
+  (0.1ms) SAVEPOINT active_record_1
3766
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3767
+  (0.2ms) ROLLBACK
3768
+  (0.1ms) BEGIN
3769
+ -------------------------
3770
+ RecordTest: test_validate
3771
+ -------------------------
3772
+  (0.1ms) ROLLBACK
3773
+  (0.1ms) BEGIN
3774
+ ------------------------------
3775
+ ControllerTest: test_callbacks
3776
+ ------------------------------
3777
+  (0.1ms) ROLLBACK
3778
+  (0.1ms) BEGIN
3779
+ ---------------------------
3780
+ ControllerTest: test_render
3781
+ ---------------------------
3782
+  (0.1ms) ROLLBACK
3783
+  (0.1ms) BEGIN
3784
+ ------------------------------
3785
+ MailerTest: test_normalization
3786
+ ------------------------------
3787
+ Rendered user_mailer/invite.text.erb (0.3ms)
3788
+
3789
+ UserMailer#invite: processed outbound mail in 10.5ms
3790
+  (0.2ms) ROLLBACK
3791
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3792
+  (0.2ms) BEGIN
3793
+ -------------------------
3794
+ ValidationTest: test_time
3795
+ -------------------------
3796
+  (0.2ms) ROLLBACK
3797
+  (0.1ms) BEGIN
3798
+ -------------------------------
3799
+ ValidationTest: test_complexity
3800
+ -------------------------------
3801
+  (0.1ms) ROLLBACK
3802
+  (0.1ms) BEGIN
3803
+ --------------------------
3804
+ ValidationTest: test_count
3805
+ --------------------------
3806
+  (0.1ms) ROLLBACK
3807
+  (0.1ms) BEGIN
3808
+ ----------------------------
3809
+ ValidationTest: test_methods
3810
+ ----------------------------
3811
+  (0.2ms) ROLLBACK
3812
+  (0.1ms) BEGIN
3813
+ ------------------------------
3814
+ MailerTest: test_normalization
3815
+ ------------------------------
3816
+ Rendered user_mailer/invite.text.erb (0.7ms)
3817
+
3818
+ UserMailer#invite: processed outbound mail in 12.8ms
3819
+  (0.2ms) ROLLBACK
3820
+  (0.1ms) BEGIN
3821
+ ------------------------------
3822
+ ControllerTest: test_callbacks
3823
+ ------------------------------
3824
+  (0.1ms) ROLLBACK
3825
+  (0.1ms) BEGIN
3826
+ ---------------------------
3827
+ ControllerTest: test_render
3828
+ ---------------------------
3829
+  (0.1ms) ROLLBACK
3830
+  (0.1ms) BEGIN
3831
+ ------------------------------
3832
+ RecordTest: test_nilify_blanks
3833
+ ------------------------------
3834
+  (0.1ms) SAVEPOINT active_record_1
3835
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3836
+  (0.1ms) ROLLBACK
3837
+  (0.1ms) BEGIN
3838
+ -------------------------
3839
+ RecordTest: test_validate
3840
+ -------------------------
3841
+  (0.2ms) ROLLBACK
3842
+  (0.1ms) BEGIN
3843
+ -----------------------------
3844
+ HelperTest: test_active_trail
3845
+ -----------------------------
3846
+  (0.1ms) ROLLBACK
3847
+  (0.1ms) BEGIN
3848
+ -------------------------------
3849
+ HelperTest: test_content_tag_if
3850
+ -------------------------------
3851
+  (0.1ms) ROLLBACK
3852
+  (0.1ms) BEGIN
3853
+ --------------------------
3854
+ HelperTest: test_extending
3855
+ --------------------------
3856
+ Rendered layouts/application.html.erb (0.2ms)
3857
+ Rendered layouts/market.html.erb (6.8ms)
3858
+  (0.2ms) ROLLBACK
3859
+  (0.1ms) BEGIN
3860
+ ----------------------
3861
+ ViewTest: test_handler
3862
+ ----------------------
3863
+  (0.2ms) SAVEPOINT active_record_1
3864
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3865
+  (0.1ms) SAVEPOINT active_record_1
3866
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3867
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 15:54:59 -0300
3868
+ Processing by UsersController#index as JSON
3869
+ User Load (0.3ms) SELECT "users".* FROM "users"
3870
+ Rendered users/index.json.ruby (1.0ms)
3871
+ Completed 200 OK in 6ms (Views: 5.3ms | ActiveRecord: 0.3ms)
3872
+  (0.3ms) ROLLBACK
3873
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3874
+  (0.2ms) BEGIN
3875
+ ----------------------
3876
+ ViewTest: test_handler
3877
+ ----------------------
3878
+  (0.2ms) SAVEPOINT active_record_1
3879
+ SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 18:59:33.270212"], ["updated_at", "2016-12-15 18:59:33.270212"]]
3880
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3881
+  (0.1ms) SAVEPOINT active_record_1
3882
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 18:59:33.273619"], ["updated_at", "2016-12-15 18:59:33.273619"]]
3883
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3884
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 15:59:33 -0300
3885
+ Processing by UsersController#index as JSON
3886
+ User Load (0.3ms) SELECT "users".* FROM "users"
3887
+ Rendered users/index.json.ruby (1.1ms)
3888
+ Completed 200 OK in 8ms (Views: 7.6ms | ActiveRecord: 0.3ms)
3889
+  (0.2ms) ROLLBACK
3890
+  (0.1ms) BEGIN
3891
+ ------------------------------
3892
+ MailerTest: test_normalization
3893
+ ------------------------------
3894
+ Rendered user_mailer/invite.text.erb (0.8ms)
3895
+
3896
+ UserMailer#invite: processed outbound mail in 13.5ms
3897
+  (0.2ms) ROLLBACK
3898
+  (0.1ms) BEGIN
3899
+ ---------------------------
3900
+ ControllerTest: test_render
3901
+ ---------------------------
3902
+  (0.1ms) ROLLBACK
3903
+  (0.1ms) BEGIN
3904
+ ------------------------------
3905
+ ControllerTest: test_callbacks
3906
+ ------------------------------
3907
+  (0.1ms) ROLLBACK
3908
+  (0.1ms) BEGIN
3909
+ -------------------------------
3910
+ ValidationTest: test_complexity
3911
+ -------------------------------
3912
+  (0.1ms) ROLLBACK
3913
+  (0.1ms) BEGIN
3914
+ --------------------------
3915
+ ValidationTest: test_count
3916
+ --------------------------
3917
+  (0.1ms) ROLLBACK
3918
+  (0.1ms) BEGIN
3919
+ -------------------------
3920
+ ValidationTest: test_time
3921
+ -------------------------
3922
+  (0.1ms) ROLLBACK
3923
+  (0.1ms) BEGIN
3924
+ ----------------------------
3925
+ ValidationTest: test_methods
3926
+ ----------------------------
3927
+  (0.1ms) ROLLBACK
3928
+  (0.1ms) BEGIN
3929
+ ------------------------------
3930
+ RecordTest: test_nilify_blanks
3931
+ ------------------------------
3932
+  (0.1ms) SAVEPOINT active_record_1
3933
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3934
+  (0.1ms) ROLLBACK
3935
+  (0.1ms) BEGIN
3936
+ -------------------------
3937
+ RecordTest: test_validate
3938
+ -------------------------
3939
+  (0.2ms) ROLLBACK
3940
+  (0.1ms) BEGIN
3941
+ -------------------------------
3942
+ HelperTest: test_content_tag_if
3943
+ -------------------------------
3944
+  (0.1ms) ROLLBACK
3945
+  (0.1ms) BEGIN
3946
+ --------------------------
3947
+ HelperTest: test_extending
3948
+ --------------------------
3949
+ Rendered layouts/application.html.erb (0.2ms)
3950
+ Rendered layouts/market.html.erb (6.8ms)
3951
+  (0.2ms) ROLLBACK
3952
+  (0.1ms) BEGIN
3953
+ -----------------------------
3954
+ HelperTest: test_active_trail
3955
+ -----------------------------
3956
+  (0.1ms) ROLLBACK
3957
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3958
+  (0.2ms) BEGIN
3959
+ ----------------------
3960
+ ViewTest: test_handler
3961
+ ----------------------
3962
+  (0.1ms) SAVEPOINT active_record_1
3963
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:04:26.298313"], ["updated_at", "2016-12-15 19:04:26.298313"]]
3964
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3965
+  (0.1ms) SAVEPOINT active_record_1
3966
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:04:26.301317"], ["updated_at", "2016-12-15 19:04:26.301317"]]
3967
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3968
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:04:26 -0300
3969
+ Processing by UsersController#index as JSON
3970
+ User Load (0.3ms) SELECT "users".* FROM "users"
3971
+ Rendered users/index.json.ruby (1.2ms)
3972
+ Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.3ms)
3973
+  (0.2ms) ROLLBACK
3974
+  (0.1ms) BEGIN
3975
+ ------------------------------
3976
+ ControllerTest: test_callbacks
3977
+ ------------------------------
3978
+  (0.2ms) ROLLBACK
3979
+  (0.1ms) BEGIN
3980
+ ---------------------------
3981
+ ControllerTest: test_render
3982
+ ---------------------------
3983
+  (0.1ms) ROLLBACK
3984
+  (0.1ms) BEGIN
3985
+ ------------------------------
3986
+ RecordTest: test_nilify_blanks
3987
+ ------------------------------
3988
+  (0.1ms) SAVEPOINT active_record_1
3989
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:04:43.278361"], ["updated_at", "2016-12-15 19:04:43.278361"]]
3990
+  (0.3ms) RELEASE SAVEPOINT active_record_1
3991
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 14]]
3992
+  (0.2ms) ROLLBACK
3993
+  (0.1ms) BEGIN
3994
+ -------------------------
3995
+ RecordTest: test_validate
3996
+ -------------------------
3997
+  (0.1ms) ROLLBACK
3998
+  (0.1ms) BEGIN
3999
+ ------------------------------
4000
+ MailerTest: test_normalization
4001
+ ------------------------------
4002
+ Rendered user_mailer/invite.text.erb (0.8ms)
4003
+
4004
+ UserMailer#invite: processed outbound mail in 13.0ms
4005
+  (0.2ms) ROLLBACK
4006
+  (0.1ms) BEGIN
4007
+ -----------------------------
4008
+ HelperTest: test_active_trail
4009
+ -----------------------------
4010
+  (0.1ms) ROLLBACK
4011
+  (0.1ms) BEGIN
4012
+ --------------------------
4013
+ HelperTest: test_extending
4014
+ --------------------------
4015
+ Rendered layouts/application.html.erb (0.2ms)
4016
+ Rendered layouts/market.html.erb (7.0ms)
4017
+  (0.2ms) ROLLBACK
4018
+  (0.1ms) BEGIN
4019
+ -------------------------------
4020
+ HelperTest: test_content_tag_if
4021
+ -------------------------------
4022
+  (0.1ms) ROLLBACK
4023
+  (0.1ms) BEGIN
4024
+ --------------------------
4025
+ ValidationTest: test_count
4026
+ --------------------------
4027
+  (0.1ms) ROLLBACK
4028
+  (0.1ms) BEGIN
4029
+ ----------------------------
4030
+ ValidationTest: test_methods
4031
+ ----------------------------
4032
+  (0.1ms) ROLLBACK
4033
+  (0.1ms) BEGIN
4034
+ -------------------------
4035
+ ValidationTest: test_time
4036
+ -------------------------
4037
+  (0.1ms) ROLLBACK
4038
+  (0.1ms) BEGIN
4039
+ -------------------------------
4040
+ ValidationTest: test_complexity
4041
+ -------------------------------
4042
+  (0.1ms) ROLLBACK
4043
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4044
+  (0.2ms) BEGIN
4045
+ ------------------------------
4046
+ MailerTest: test_normalization
4047
+ ------------------------------
4048
+ Rendered user_mailer/invite.text.erb (0.6ms)
4049
+
4050
+ UserMailer#invite: processed outbound mail in 15.2ms
4051
+  (0.2ms) ROLLBACK
4052
+  (0.1ms) BEGIN
4053
+ ----------------------
4054
+ ViewTest: test_handler
4055
+ ----------------------
4056
+  (0.1ms) SAVEPOINT active_record_1
4057
+ SQL (0.6ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:04:58.475400"], ["updated_at", "2016-12-15 19:04:58.475400"]]
4058
+  (0.2ms) RELEASE SAVEPOINT active_record_1
4059
+  (0.1ms) SAVEPOINT active_record_1
4060
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:04:58.480010"], ["updated_at", "2016-12-15 19:04:58.480010"]]
4061
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4062
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:04:58 -0300
4063
+ Processing by UsersController#index as JSON
4064
+ User Load (0.4ms) SELECT "users".* FROM "users"
4065
+ Rendered users/index.json.ruby (1.2ms)
4066
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.4ms)
4067
+  (0.2ms) ROLLBACK
4068
+  (0.1ms) BEGIN
4069
+ -------------------------
4070
+ RecordTest: test_validate
4071
+ -------------------------
4072
+  (0.1ms) ROLLBACK
4073
+  (0.1ms) BEGIN
4074
+ ------------------------------
4075
+ RecordTest: test_nilify_blanks
4076
+ ------------------------------
4077
+  (0.1ms) SAVEPOINT active_record_1
4078
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:04:58.497189"], ["updated_at", "2016-12-15 19:04:58.497189"]]
4079
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4080
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 17]]
4081
+  (0.1ms) ROLLBACK
4082
+  (0.1ms) BEGIN
4083
+ -------------------------------
4084
+ ValidationTest: test_complexity
4085
+ -------------------------------
4086
+  (0.2ms) ROLLBACK
4087
+  (0.1ms) BEGIN
4088
+ ----------------------------
4089
+ ValidationTest: test_methods
4090
+ ----------------------------
4091
+  (0.1ms) ROLLBACK
4092
+  (0.1ms) BEGIN
4093
+ --------------------------
4094
+ ValidationTest: test_count
4095
+ --------------------------
4096
+  (0.1ms) ROLLBACK
4097
+  (0.1ms) BEGIN
4098
+ -------------------------
4099
+ ValidationTest: test_time
4100
+ -------------------------
4101
+  (0.1ms) ROLLBACK
4102
+  (0.1ms) BEGIN
4103
+ -----------------------------
4104
+ HelperTest: test_active_trail
4105
+ -----------------------------
4106
+  (0.1ms) ROLLBACK
4107
+  (0.1ms) BEGIN
4108
+ -------------------------------
4109
+ HelperTest: test_content_tag_if
4110
+ -------------------------------
4111
+  (0.1ms) ROLLBACK
4112
+  (0.1ms) BEGIN
4113
+ --------------------------
4114
+ HelperTest: test_extending
4115
+ --------------------------
4116
+ Rendered layouts/application.html.erb (0.2ms)
4117
+ Rendered layouts/market.html.erb (6.6ms)
4118
+  (0.2ms) ROLLBACK
4119
+  (0.1ms) BEGIN
4120
+ ---------------------------
4121
+ ControllerTest: test_render
4122
+ ---------------------------
4123
+  (0.1ms) ROLLBACK
4124
+  (0.1ms) BEGIN
4125
+ ------------------------------
4126
+ ControllerTest: test_callbacks
4127
+ ------------------------------
4128
+  (0.1ms) ROLLBACK
4129
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4130
+  (0.2ms) BEGIN
4131
+ ------------------------------
4132
+ MailerTest: test_normalization
4133
+ ------------------------------
4134
+ Rendered user_mailer/invite.text.erb (0.6ms)
4135
+
4136
+ UserMailer#invite: processed outbound mail in 15.5ms
4137
+  (0.2ms) ROLLBACK
4138
+  (0.1ms) BEGIN
4139
+ --------------------------
4140
+ ValidationTest: test_count
4141
+ --------------------------
4142
+  (0.2ms) ROLLBACK
4143
+  (0.1ms) BEGIN
4144
+ ----------------------------
4145
+ ValidationTest: test_methods
4146
+ ----------------------------
4147
+  (0.2ms) ROLLBACK
4148
+  (0.1ms) BEGIN
4149
+ -------------------------
4150
+ ValidationTest: test_time
4151
+ -------------------------
4152
+  (0.1ms) ROLLBACK
4153
+  (0.1ms) BEGIN
4154
+ -------------------------------
4155
+ ValidationTest: test_complexity
4156
+ -------------------------------
4157
+  (0.1ms) ROLLBACK
4158
+  (0.1ms) BEGIN
4159
+ -------------------------------
4160
+ HelperTest: test_content_tag_if
4161
+ -------------------------------
4162
+  (0.2ms) ROLLBACK
4163
+  (0.1ms) BEGIN
4164
+ --------------------------
4165
+ HelperTest: test_extending
4166
+ --------------------------
4167
+ Rendered layouts/application.html.erb (0.3ms)
4168
+ Rendered layouts/market.html.erb (7.2ms)
4169
+  (0.2ms) ROLLBACK
4170
+  (0.1ms) BEGIN
4171
+ -----------------------------
4172
+ HelperTest: test_active_trail
4173
+ -----------------------------
4174
+  (0.1ms) ROLLBACK
4175
+  (0.1ms) BEGIN
4176
+ ------------------------------
4177
+ RecordTest: test_nilify_blanks
4178
+ ------------------------------
4179
+  (0.1ms) SAVEPOINT active_record_1
4180
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
4181
+  (0.1ms) ROLLBACK
4182
+  (0.1ms) BEGIN
4183
+ -------------------------
4184
+ RecordTest: test_validate
4185
+ -------------------------
4186
+  (0.1ms) ROLLBACK
4187
+  (0.1ms) BEGIN
4188
+ ----------------------
4189
+ ViewTest: test_handler
4190
+ ----------------------
4191
+  (0.1ms) SAVEPOINT active_record_1
4192
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4193
+  (0.1ms) SAVEPOINT active_record_1
4194
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4195
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:05:05 -0300
4196
+ Processing by UsersController#index as JSON
4197
+ User Load (0.4ms) SELECT "users".* FROM "users"
4198
+ Rendered users/index.json.ruby (1.0ms)
4199
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.4ms)
4200
+  (0.2ms) ROLLBACK
4201
+  (0.1ms) BEGIN
4202
+ ---------------------------
4203
+ ControllerTest: test_render
4204
+ ---------------------------
4205
+  (0.1ms) ROLLBACK
4206
+  (0.1ms) BEGIN
4207
+ ------------------------------
4208
+ ControllerTest: test_callbacks
4209
+ ------------------------------
4210
+  (0.1ms) ROLLBACK
4211
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4212
+  (0.2ms) BEGIN
4213
+ ------------------------------
4214
+ ControllerTest: test_callbacks
4215
+ ------------------------------
4216
+  (0.1ms) ROLLBACK
4217
+  (0.1ms) BEGIN
4218
+ ---------------------------
4219
+ ControllerTest: test_render
4220
+ ---------------------------
4221
+  (0.1ms) ROLLBACK
4222
+  (0.1ms) BEGIN
4223
+ -------------------------------
4224
+ ValidationTest: test_complexity
4225
+ -------------------------------
4226
+  (0.2ms) ROLLBACK
4227
+  (0.1ms) BEGIN
4228
+ --------------------------
4229
+ ValidationTest: test_count
4230
+ --------------------------
4231
+  (0.1ms) ROLLBACK
4232
+  (0.1ms) BEGIN
4233
+ -------------------------
4234
+ ValidationTest: test_time
4235
+ -------------------------
4236
+  (0.1ms) ROLLBACK
4237
+  (0.1ms) BEGIN
4238
+ ----------------------------
4239
+ ValidationTest: test_methods
4240
+ ----------------------------
4241
+  (0.1ms) ROLLBACK
4242
+  (0.1ms) BEGIN
4243
+ ------------------------------
4244
+ MailerTest: test_normalization
4245
+ ------------------------------
4246
+ Rendered user_mailer/invite.text.erb (0.6ms)
4247
+
4248
+ UserMailer#invite: processed outbound mail in 12.2ms
4249
+  (0.2ms) ROLLBACK
4250
+  (0.1ms) BEGIN
4251
+ -----------------------------
4252
+ HelperTest: test_active_trail
4253
+ -----------------------------
4254
+  (0.1ms) ROLLBACK
4255
+  (0.1ms) BEGIN
4256
+ -------------------------------
4257
+ HelperTest: test_content_tag_if
4258
+ -------------------------------
4259
+  (0.1ms) ROLLBACK
4260
+  (0.1ms) BEGIN
4261
+ --------------------------
4262
+ HelperTest: test_extending
4263
+ --------------------------
4264
+ Rendered layouts/application.html.erb (0.3ms)
4265
+ Rendered layouts/market.html.erb (6.9ms)
4266
+  (0.2ms) ROLLBACK
4267
+  (0.1ms) BEGIN
4268
+ ----------------------
4269
+ ViewTest: test_handler
4270
+ ----------------------
4271
+  (0.1ms) SAVEPOINT active_record_1
4272
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4273
+  (0.1ms) SAVEPOINT active_record_1
4274
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4275
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:05:16 -0300
4276
+ Processing by UsersController#index as JSON
4277
+ User Load (0.4ms) SELECT "users".* FROM "users"
4278
+ Rendered users/index.json.ruby (1.2ms)
4279
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.4ms)
4280
+  (0.2ms) ROLLBACK
4281
+  (0.1ms) BEGIN
4282
+ -------------------------
4283
+ RecordTest: test_validate
4284
+ -------------------------
4285
+  (0.1ms) ROLLBACK
4286
+  (0.1ms) BEGIN
4287
+ ------------------------------
4288
+ RecordTest: test_nilify_blanks
4289
+ ------------------------------
4290
+  (0.1ms) SAVEPOINT active_record_1
4291
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4292
+  (0.1ms) ROLLBACK
4293
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4294
+  (0.2ms) BEGIN
4295
+ ----------------------
4296
+ ViewTest: test_handler
4297
+ ----------------------
4298
+  (0.1ms) SAVEPOINT active_record_1
4299
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:05:22.372882"], ["updated_at", "2016-12-15 19:05:22.372882"]]
4300
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4301
+  (0.1ms) SAVEPOINT active_record_1
4302
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:05:22.375926"], ["updated_at", "2016-12-15 19:05:22.375926"]]
4303
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4304
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:05:22 -0300
4305
+ Processing by UsersController#index as JSON
4306
+ User Load (0.4ms) SELECT "users".* FROM "users"
4307
+ Rendered users/index.json.ruby (1.2ms)
4308
+ Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.4ms)
4309
+  (0.2ms) ROLLBACK
4310
+  (0.1ms) BEGIN
4311
+ ------------------------------
4312
+ ControllerTest: test_callbacks
4313
+ ------------------------------
4314
+  (0.1ms) ROLLBACK
4315
+  (0.1ms) BEGIN
4316
+ ---------------------------
4317
+ ControllerTest: test_render
4318
+ ---------------------------
4319
+  (0.1ms) ROLLBACK
4320
+  (0.1ms) BEGIN
4321
+ -------------------------------
4322
+ ValidationTest: test_complexity
4323
+ -------------------------------
4324
+  (0.2ms) ROLLBACK
4325
+  (1.8ms) BEGIN
4326
+ -------------------------
4327
+ ValidationTest: test_time
4328
+ -------------------------
4329
+  (0.2ms) ROLLBACK
4330
+  (0.1ms) BEGIN
4331
+ --------------------------
4332
+ ValidationTest: test_count
4333
+ --------------------------
4334
+  (0.1ms) ROLLBACK
4335
+  (0.1ms) BEGIN
4336
+ ----------------------------
4337
+ ValidationTest: test_methods
4338
+ ----------------------------
4339
+  (0.1ms) ROLLBACK
4340
+  (0.1ms) BEGIN
4341
+ ------------------------------
4342
+ MailerTest: test_normalization
4343
+ ------------------------------
4344
+ Rendered user_mailer/invite.text.erb (0.9ms)
4345
+
4346
+ UserMailer#invite: processed outbound mail in 11.6ms
4347
+  (0.2ms) ROLLBACK
4348
+  (0.2ms) BEGIN
4349
+ -----------------------------
4350
+ HelperTest: test_active_trail
4351
+ -----------------------------
4352
+  (0.1ms) ROLLBACK
4353
+  (0.1ms) BEGIN
4354
+ -------------------------------
4355
+ HelperTest: test_content_tag_if
4356
+ -------------------------------
4357
+  (0.1ms) ROLLBACK
4358
+  (0.1ms) BEGIN
4359
+ --------------------------
4360
+ HelperTest: test_extending
4361
+ --------------------------
4362
+ Rendered layouts/application.html.erb (0.3ms)
4363
+ Rendered layouts/market.html.erb (7.2ms)
4364
+  (0.1ms) ROLLBACK
4365
+  (0.1ms) BEGIN
4366
+ ------------------------------
4367
+ RecordTest: test_nilify_blanks
4368
+ ------------------------------
4369
+  (0.1ms) SAVEPOINT active_record_1
4370
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4371
+  (0.1ms) ROLLBACK
4372
+  (0.1ms) BEGIN
4373
+ -------------------------
4374
+ RecordTest: test_validate
4375
+ -------------------------
4376
+  (0.1ms) ROLLBACK
4377
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4378
+  (0.2ms) BEGIN
4379
+ -------------------------------
4380
+ HelperTest: test_content_tag_if
4381
+ -------------------------------
4382
+  (0.2ms) ROLLBACK
4383
+  (0.1ms) BEGIN
4384
+ --------------------------
4385
+ HelperTest: test_extending
4386
+ --------------------------
4387
+ Rendered layouts/application.html.erb (0.3ms)
4388
+ Rendered layouts/market.html.erb (7.3ms)
4389
+  (0.2ms) ROLLBACK
4390
+  (0.1ms) BEGIN
4391
+ -----------------------------
4392
+ HelperTest: test_active_trail
4393
+ -----------------------------
4394
+  (0.1ms) ROLLBACK
4395
+  (0.1ms) BEGIN
4396
+ ---------------------------
4397
+ ControllerTest: test_render
4398
+ ---------------------------
4399
+  (0.1ms) ROLLBACK
4400
+  (0.1ms) BEGIN
4401
+ ------------------------------
4402
+ ControllerTest: test_callbacks
4403
+ ------------------------------
4404
+  (0.1ms) ROLLBACK
4405
+  (0.1ms) BEGIN
4406
+ -------------------------------
4407
+ ValidationTest: test_complexity
4408
+ -------------------------------
4409
+  (0.2ms) ROLLBACK
4410
+  (0.2ms) BEGIN
4411
+ ----------------------------
4412
+ ValidationTest: test_methods
4413
+ ----------------------------
4414
+  (0.1ms) ROLLBACK
4415
+  (0.1ms) BEGIN
4416
+ -------------------------
4417
+ ValidationTest: test_time
4418
+ -------------------------
4419
+  (0.1ms) ROLLBACK
4420
+  (0.1ms) BEGIN
4421
+ --------------------------
4422
+ ValidationTest: test_count
4423
+ --------------------------
4424
+  (0.1ms) ROLLBACK
4425
+  (0.1ms) BEGIN
4426
+ ------------------------------
4427
+ RecordTest: test_nilify_blanks
4428
+ ------------------------------
4429
+  (0.1ms) SAVEPOINT active_record_1
4430
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4431
+  (0.1ms) ROLLBACK
4432
+  (0.1ms) BEGIN
4433
+ -------------------------
4434
+ RecordTest: test_validate
4435
+ -------------------------
4436
+  (0.1ms) ROLLBACK
4437
+  (0.1ms) BEGIN
4438
+ ------------------------------
4439
+ MailerTest: test_normalization
4440
+ ------------------------------
4441
+ Rendered user_mailer/invite.text.erb (0.3ms)
4442
+
4443
+ UserMailer#invite: processed outbound mail in 9.8ms
4444
+  (0.2ms) ROLLBACK
4445
+  (0.1ms) BEGIN
4446
+ ----------------------
4447
+ ViewTest: test_handler
4448
+ ----------------------
4449
+  (0.1ms) SAVEPOINT active_record_1
4450
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4451
+  (0.1ms) SAVEPOINT active_record_1
4452
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4453
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:06:27 -0300
4454
+ Processing by UsersController#index as JSON
4455
+ User Load (0.3ms) SELECT "users".* FROM "users"
4456
+ Rendered users/index.json.ruby (1.0ms)
4457
+ Completed 200 OK in 5ms (Views: 4.2ms | ActiveRecord: 0.3ms)
4458
+  (0.2ms) ROLLBACK
4459
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4460
+  (0.2ms) BEGIN
4461
+ -------------------------
4462
+ ValidationTest: test_time
4463
+ -------------------------
4464
+  (0.2ms) ROLLBACK
4465
+  (0.2ms) BEGIN
4466
+ -------------------------------
4467
+ ValidationTest: test_complexity
4468
+ -------------------------------
4469
+  (0.1ms) ROLLBACK
4470
+  (0.1ms) BEGIN
4471
+ --------------------------
4472
+ ValidationTest: test_count
4473
+ --------------------------
4474
+  (0.1ms) ROLLBACK
4475
+  (0.1ms) BEGIN
4476
+ ----------------------------
4477
+ ValidationTest: test_methods
4478
+ ----------------------------
4479
+  (0.1ms) ROLLBACK
4480
+  (0.1ms) BEGIN
4481
+ -------------------------
4482
+ RecordTest: test_validate
4483
+ -------------------------
4484
+  (0.1ms) ROLLBACK
4485
+  (0.1ms) BEGIN
4486
+ ------------------------------
4487
+ RecordTest: test_nilify_blanks
4488
+ ------------------------------
4489
+  (0.1ms) SAVEPOINT active_record_1
4490
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4491
+  (0.1ms) ROLLBACK
4492
+  (0.1ms) BEGIN
4493
+ ----------------------
4494
+ ViewTest: test_handler
4495
+ ----------------------
4496
+  (0.1ms) SAVEPOINT active_record_1
4497
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4498
+  (0.1ms) SAVEPOINT active_record_1
4499
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4500
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:06:32 -0300
4501
+ Processing by UsersController#index as JSON
4502
+ User Load (0.4ms) SELECT "users".* FROM "users"
4503
+ Rendered users/index.json.ruby (1.1ms)
4504
+ Completed 200 OK in 10ms (Views: 9.7ms | ActiveRecord: 0.4ms)
4505
+  (0.3ms) ROLLBACK
4506
+  (0.1ms) BEGIN
4507
+ ---------------------------
4508
+ ControllerTest: test_render
4509
+ ---------------------------
4510
+  (0.1ms) ROLLBACK
4511
+  (0.1ms) BEGIN
4512
+ ------------------------------
4513
+ ControllerTest: test_callbacks
4514
+ ------------------------------
4515
+  (0.1ms) ROLLBACK
4516
+  (0.1ms) BEGIN
4517
+ ------------------------------
4518
+ MailerTest: test_normalization
4519
+ ------------------------------
4520
+ Rendered user_mailer/invite.text.erb (0.8ms)
4521
+
4522
+ UserMailer#invite: processed outbound mail in 10.4ms
4523
+  (0.2ms) ROLLBACK
4524
+  (0.1ms) BEGIN
4525
+ -------------------------------
4526
+ HelperTest: test_content_tag_if
4527
+ -------------------------------
4528
+  (0.1ms) ROLLBACK
4529
+  (0.1ms) BEGIN
4530
+ -----------------------------
4531
+ HelperTest: test_active_trail
4532
+ -----------------------------
4533
+  (0.1ms) ROLLBACK
4534
+  (0.1ms) BEGIN
4535
+ --------------------------
4536
+ HelperTest: test_extending
4537
+ --------------------------
4538
+ Rendered layouts/application.html.erb (0.3ms)
4539
+ Rendered layouts/market.html.erb (7.0ms)
4540
+  (0.2ms) ROLLBACK
4541
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4542
+  (0.2ms) BEGIN
4543
+ ------------------------------
4544
+ RecordTest: test_nilify_blanks
4545
+ ------------------------------
4546
+  (0.1ms) SAVEPOINT active_record_1
4547
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:06:37.400519"], ["updated_at", "2016-12-15 19:06:37.400519"]]
4548
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4549
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 20]]
4550
+  (0.2ms) ROLLBACK
4551
+  (0.1ms) BEGIN
4552
+ -------------------------
4553
+ RecordTest: test_validate
4554
+ -------------------------
4555
+  (0.1ms) ROLLBACK
4556
+  (0.1ms) BEGIN
4557
+ --------------------------
4558
+ HelperTest: test_extending
4559
+ --------------------------
4560
+ Rendered layouts/application.html.erb (0.5ms)
4561
+ Rendered layouts/market.html.erb (7.9ms)
4562
+  (0.4ms) ROLLBACK
4563
+  (0.1ms) BEGIN
4564
+ -----------------------------
4565
+ HelperTest: test_active_trail
4566
+ -----------------------------
4567
+  (0.1ms) ROLLBACK
4568
+  (0.1ms) BEGIN
4569
+ -------------------------------
4570
+ HelperTest: test_content_tag_if
4571
+ -------------------------------
4572
+  (0.1ms) ROLLBACK
4573
+  (0.1ms) BEGIN
4574
+ ------------------------------
4575
+ MailerTest: test_normalization
4576
+ ------------------------------
4577
+ Rendered user_mailer/invite.text.erb (0.3ms)
4578
+
4579
+ UserMailer#invite: processed outbound mail in 12.8ms
4580
+  (0.2ms) ROLLBACK
4581
+  (0.1ms) BEGIN
4582
+ ----------------------
4583
+ ViewTest: test_handler
4584
+ ----------------------
4585
+  (0.1ms) SAVEPOINT active_record_1
4586
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:06:37.574825"], ["updated_at", "2016-12-15 19:06:37.574825"]]
4587
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4588
+  (0.1ms) SAVEPOINT active_record_1
4589
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:06:37.576193"], ["updated_at", "2016-12-15 19:06:37.576193"]]
4590
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4591
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:06:37 -0300
4592
+ Processing by UsersController#index as JSON
4593
+ User Load (0.3ms) SELECT "users".* FROM "users"
4594
+ Rendered users/index.json.ruby (0.9ms)
4595
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.3ms)
4596
+  (0.1ms) ROLLBACK
4597
+  (0.1ms) BEGIN
4598
+ ------------------------------
4599
+ ControllerTest: test_callbacks
4600
+ ------------------------------
4601
+  (0.1ms) ROLLBACK
4602
+  (0.1ms) BEGIN
4603
+ ---------------------------
4604
+ ControllerTest: test_render
4605
+ ---------------------------
4606
+  (0.1ms) ROLLBACK
4607
+  (0.1ms) BEGIN
4608
+ ----------------------------
4609
+ ValidationTest: test_methods
4610
+ ----------------------------
4611
+  (0.1ms) ROLLBACK
4612
+  (0.1ms) BEGIN
4613
+ -------------------------
4614
+ ValidationTest: test_time
4615
+ -------------------------
4616
+  (0.1ms) ROLLBACK
4617
+  (0.1ms) BEGIN
4618
+ -------------------------------
4619
+ ValidationTest: test_complexity
4620
+ -------------------------------
4621
+  (0.1ms) ROLLBACK
4622
+  (0.1ms) BEGIN
4623
+ --------------------------
4624
+ ValidationTest: test_count
4625
+ --------------------------
4626
+  (0.1ms) ROLLBACK
4627
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4628
+  (0.2ms) BEGIN
4629
+ -------------------------------
4630
+ ValidationTest: test_complexity
4631
+ -------------------------------
4632
+  (0.3ms) ROLLBACK
4633
+  (0.1ms) BEGIN
4634
+ --------------------------
4635
+ ValidationTest: test_count
4636
+ --------------------------
4637
+  (0.1ms) ROLLBACK
4638
+  (0.1ms) BEGIN
4639
+ -------------------------
4640
+ ValidationTest: test_time
4641
+ -------------------------
4642
+  (0.1ms) ROLLBACK
4643
+  (0.1ms) BEGIN
4644
+ ----------------------------
4645
+ ValidationTest: test_methods
4646
+ ----------------------------
4647
+  (0.1ms) ROLLBACK
4648
+  (0.1ms) BEGIN
4649
+ -------------------------------
4650
+ HelperTest: test_content_tag_if
4651
+ -------------------------------
4652
+  (0.1ms) ROLLBACK
4653
+  (0.1ms) BEGIN
4654
+ -----------------------------
4655
+ HelperTest: test_active_trail
4656
+ -----------------------------
4657
+  (0.1ms) ROLLBACK
4658
+  (0.1ms) BEGIN
4659
+ --------------------------
4660
+ HelperTest: test_extending
4661
+ --------------------------
4662
+ Rendered layouts/application.html.erb (0.4ms)
4663
+ Rendered layouts/market.html.erb (9.2ms)
4664
+  (0.2ms) ROLLBACK
4665
+  (0.1ms) BEGIN
4666
+ ------------------------------
4667
+ MailerTest: test_normalization
4668
+ ------------------------------
4669
+ Rendered user_mailer/invite.text.erb (0.2ms)
4670
+
4671
+ UserMailer#invite: processed outbound mail in 9.2ms
4672
+  (0.2ms) ROLLBACK
4673
+  (0.1ms) BEGIN
4674
+ ---------------------------
4675
+ ControllerTest: test_render
4676
+ ---------------------------
4677
+  (0.1ms) ROLLBACK
4678
+  (0.1ms) BEGIN
4679
+ ------------------------------
4680
+ ControllerTest: test_callbacks
4681
+ ------------------------------
4682
+  (0.1ms) ROLLBACK
4683
+  (0.1ms) BEGIN
4684
+ -------------------------
4685
+ RecordTest: test_validate
4686
+ -------------------------
4687
+  (0.1ms) ROLLBACK
4688
+  (0.1ms) BEGIN
4689
+ ------------------------------
4690
+ RecordTest: test_nilify_blanks
4691
+ ------------------------------
4692
+  (0.2ms) SAVEPOINT active_record_1
4693
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4694
+  (0.1ms) ROLLBACK
4695
+  (0.1ms) BEGIN
4696
+ ----------------------
4697
+ ViewTest: test_handler
4698
+ ----------------------
4699
+  (0.1ms) SAVEPOINT active_record_1
4700
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4701
+  (0.1ms) SAVEPOINT active_record_1
4702
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4703
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:07:00 -0300
4704
+ Processing by UsersController#index as JSON
4705
+ User Load (0.4ms) SELECT "users".* FROM "users"
4706
+ Rendered users/index.json.ruby (1.0ms)
4707
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.4ms)
4708
+  (0.2ms) ROLLBACK
4709
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4710
+  (0.2ms) BEGIN
4711
+ -------------------------------
4712
+ ValidationTest: test_complexity
4713
+ -------------------------------
4714
+  (0.2ms) ROLLBACK
4715
+  (0.1ms) BEGIN
4716
+ ----------------------------
4717
+ ValidationTest: test_methods
4718
+ ----------------------------
4719
+  (0.2ms) ROLLBACK
4720
+  (0.1ms) BEGIN
4721
+ -------------------------
4722
+ ValidationTest: test_time
4723
+ -------------------------
4724
+  (0.1ms) ROLLBACK
4725
+  (0.1ms) BEGIN
4726
+ --------------------------
4727
+ ValidationTest: test_count
4728
+ --------------------------
4729
+  (0.1ms) ROLLBACK
4730
+  (0.1ms) BEGIN
4731
+ ------------------------------
4732
+ MailerTest: test_normalization
4733
+ ------------------------------
4734
+ Rendered user_mailer/invite.text.erb (0.7ms)
4735
+
4736
+ UserMailer#invite: processed outbound mail in 12.4ms
4737
+  (0.2ms) ROLLBACK
4738
+  (0.1ms) BEGIN
4739
+ ----------------------
4740
+ ViewTest: test_handler
4741
+ ----------------------
4742
+  (0.1ms) SAVEPOINT active_record_1
4743
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4744
+  (0.1ms) SAVEPOINT active_record_1
4745
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4746
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:07:05 -0300
4747
+ Processing by UsersController#index as JSON
4748
+ User Load (0.3ms) SELECT "users".* FROM "users"
4749
+ Rendered users/index.json.ruby (1.0ms)
4750
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.3ms)
4751
+  (0.2ms) ROLLBACK
4752
+  (0.1ms) BEGIN
4753
+ -----------------------------
4754
+ HelperTest: test_active_trail
4755
+ -----------------------------
4756
+  (0.1ms) ROLLBACK
4757
+  (0.1ms) BEGIN
4758
+ --------------------------
4759
+ HelperTest: test_extending
4760
+ --------------------------
4761
+ Rendered layouts/application.html.erb (0.4ms)
4762
+ Rendered layouts/market.html.erb (7.6ms)
4763
+  (0.2ms) ROLLBACK
4764
+  (0.1ms) BEGIN
4765
+ -------------------------------
4766
+ HelperTest: test_content_tag_if
4767
+ -------------------------------
4768
+  (0.1ms) ROLLBACK
4769
+  (0.1ms) BEGIN
4770
+ ------------------------------
4771
+ RecordTest: test_nilify_blanks
4772
+ ------------------------------
4773
+  (0.1ms) SAVEPOINT active_record_1
4774
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4775
+  (0.1ms) ROLLBACK
4776
+  (0.1ms) BEGIN
4777
+ -------------------------
4778
+ RecordTest: test_validate
4779
+ -------------------------
4780
+  (0.1ms) ROLLBACK
4781
+  (0.1ms) BEGIN
4782
+ ------------------------------
4783
+ ControllerTest: test_callbacks
4784
+ ------------------------------
4785
+  (0.1ms) ROLLBACK
4786
+  (0.1ms) BEGIN
4787
+ ---------------------------
4788
+ ControllerTest: test_render
4789
+ ---------------------------
4790
+  (0.1ms) ROLLBACK
4791
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4792
+  (0.2ms) BEGIN
4793
+ -------------------------------
4794
+ ValidationTest: test_complexity
4795
+ -------------------------------
4796
+  (0.2ms) ROLLBACK
4797
+  (0.1ms) BEGIN
4798
+ ----------------------------
4799
+ ValidationTest: test_methods
4800
+ ----------------------------
4801
+  (0.1ms) ROLLBACK
4802
+  (0.1ms) BEGIN
4803
+ -------------------------
4804
+ ValidationTest: test_time
4805
+ -------------------------
4806
+  (0.1ms) ROLLBACK
4807
+  (0.1ms) BEGIN
4808
+ --------------------------
4809
+ ValidationTest: test_count
4810
+ --------------------------
4811
+  (0.2ms) ROLLBACK
4812
+  (0.1ms) BEGIN
4813
+ -------------------------
4814
+ RecordTest: test_validate
4815
+ -------------------------
4816
+  (0.1ms) ROLLBACK
4817
+  (0.1ms) BEGIN
4818
+ ------------------------------
4819
+ RecordTest: test_nilify_blanks
4820
+ ------------------------------
4821
+  (0.1ms) SAVEPOINT active_record_1
4822
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4823
+  (0.1ms) ROLLBACK
4824
+  (0.1ms) BEGIN
4825
+ ------------------------------
4826
+ MailerTest: test_normalization
4827
+ ------------------------------
4828
+ Rendered user_mailer/invite.text.erb (0.7ms)
4829
+
4830
+ UserMailer#invite: processed outbound mail in 12.6ms
4831
+  (0.2ms) ROLLBACK
4832
+  (0.1ms) BEGIN
4833
+ ------------------------------
4834
+ ControllerTest: test_callbacks
4835
+ ------------------------------
4836
+  (0.1ms) ROLLBACK
4837
+  (0.1ms) BEGIN
4838
+ ---------------------------
4839
+ ControllerTest: test_render
4840
+ ---------------------------
4841
+  (0.1ms) ROLLBACK
4842
+  (0.1ms) BEGIN
4843
+ ----------------------
4844
+ ViewTest: test_handler
4845
+ ----------------------
4846
+  (0.1ms) SAVEPOINT active_record_1
4847
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4848
+  (0.1ms) SAVEPOINT active_record_1
4849
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4850
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:07:11 -0300
4851
+ Processing by UsersController#index as JSON
4852
+ User Load (0.3ms) SELECT "users".* FROM "users"
4853
+ Rendered users/index.json.ruby (1.0ms)
4854
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.3ms)
4855
+  (0.2ms) ROLLBACK
4856
+  (0.1ms) BEGIN
4857
+ -----------------------------
4858
+ HelperTest: test_active_trail
4859
+ -----------------------------
4860
+  (0.1ms) ROLLBACK
4861
+  (0.1ms) BEGIN
4862
+ -------------------------------
4863
+ HelperTest: test_content_tag_if
4864
+ -------------------------------
4865
+  (0.1ms) ROLLBACK
4866
+  (0.1ms) BEGIN
4867
+ --------------------------
4868
+ HelperTest: test_extending
4869
+ --------------------------
4870
+ Rendered layouts/application.html.erb (0.3ms)
4871
+ Rendered layouts/market.html.erb (7.2ms)
4872
+  (0.2ms) ROLLBACK
4873
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4874
+  (0.2ms) BEGIN
4875
+ -------------------------------
4876
+ ValidationTest: test_complexity
4877
+ -------------------------------
4878
+  (0.2ms) ROLLBACK
4879
+  (0.1ms) BEGIN
4880
+ --------------------------
4881
+ ValidationTest: test_count
4882
+ --------------------------
4883
+  (0.1ms) ROLLBACK
4884
+  (0.1ms) BEGIN
4885
+ ----------------------------
4886
+ ValidationTest: test_methods
4887
+ ----------------------------
4888
+  (0.1ms) ROLLBACK
4889
+  (0.1ms) BEGIN
4890
+ -------------------------
4891
+ ValidationTest: test_time
4892
+ -------------------------
4893
+  (0.1ms) ROLLBACK
4894
+  (0.1ms) BEGIN
4895
+ -----------------------------
4896
+ HelperTest: test_active_trail
4897
+ -----------------------------
4898
+  (0.1ms) ROLLBACK
4899
+  (0.2ms) BEGIN
4900
+ -------------------------------
4901
+ HelperTest: test_content_tag_if
4902
+ -------------------------------
4903
+  (0.1ms) ROLLBACK
4904
+  (0.1ms) BEGIN
4905
+ --------------------------
4906
+ HelperTest: test_extending
4907
+ --------------------------
4908
+ Rendered layouts/application.html.erb (0.5ms)
4909
+ Rendered layouts/market.html.erb (9.4ms)
4910
+  (0.2ms) ROLLBACK
4911
+  (0.1ms) BEGIN
4912
+ ---------------------------
4913
+ ControllerTest: test_render
4914
+ ---------------------------
4915
+  (0.1ms) ROLLBACK
4916
+  (0.1ms) BEGIN
4917
+ ------------------------------
4918
+ ControllerTest: test_callbacks
4919
+ ------------------------------
4920
+  (0.1ms) ROLLBACK
4921
+  (0.1ms) BEGIN
4922
+ ------------------------------
4923
+ MailerTest: test_normalization
4924
+ ------------------------------
4925
+ Rendered user_mailer/invite.text.erb (0.3ms)
4926
+
4927
+ UserMailer#invite: processed outbound mail in 9.9ms
4928
+  (0.2ms) ROLLBACK
4929
+  (0.1ms) BEGIN
4930
+ ----------------------
4931
+ ViewTest: test_handler
4932
+ ----------------------
4933
+  (0.2ms) SAVEPOINT active_record_1
4934
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4935
+  (0.1ms) SAVEPOINT active_record_1
4936
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4937
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:07:15 -0300
4938
+ Processing by UsersController#index as JSON
4939
+ User Load (0.4ms) SELECT "users".* FROM "users"
4940
+ Rendered users/index.json.ruby (1.1ms)
4941
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.4ms)
4942
+  (0.3ms) ROLLBACK
4943
+  (0.1ms) BEGIN
4944
+ ------------------------------
4945
+ RecordTest: test_nilify_blanks
4946
+ ------------------------------
4947
+  (0.2ms) SAVEPOINT active_record_1
4948
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4949
+  (0.1ms) ROLLBACK
4950
+  (0.1ms) BEGIN
4951
+ -------------------------
4952
+ RecordTest: test_validate
4953
+ -------------------------
4954
+  (0.1ms) ROLLBACK
4955
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
4956
+  (0.2ms) BEGIN
4957
+ -------------------------------
4958
+ ValidationTest: test_complexity
4959
+ -------------------------------
4960
+  (0.2ms) ROLLBACK
4961
+  (0.1ms) BEGIN
4962
+ ----------------------------
4963
+ ValidationTest: test_methods
4964
+ ----------------------------
4965
+  (0.1ms) ROLLBACK
4966
+  (0.1ms) BEGIN
4967
+ --------------------------
4968
+ ValidationTest: test_count
4969
+ --------------------------
4970
+  (0.1ms) ROLLBACK
4971
+  (0.1ms) BEGIN
4972
+ -------------------------
4973
+ ValidationTest: test_time
4974
+ -------------------------
4975
+  (0.1ms) ROLLBACK
4976
+  (0.1ms) BEGIN
4977
+ ------------------------------
4978
+ ControllerTest: test_callbacks
4979
+ ------------------------------
4980
+  (0.2ms) ROLLBACK
4981
+  (0.1ms) BEGIN
4982
+ ---------------------------
4983
+ ControllerTest: test_render
4984
+ ---------------------------
4985
+  (0.2ms) ROLLBACK
4986
+  (0.1ms) BEGIN
4987
+ ----------------------
4988
+ ViewTest: test_handler
4989
+ ----------------------
4990
+  (0.1ms) SAVEPOINT active_record_1
4991
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4992
+  (0.1ms) SAVEPOINT active_record_1
4993
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4994
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:07:20 -0300
4995
+ Processing by UsersController#index as JSON
4996
+ User Load (0.5ms) SELECT "users".* FROM "users"
4997
+ Rendered users/index.json.ruby (1.2ms)
4998
+ Completed 200 OK in 11ms (Views: 9.8ms | ActiveRecord: 0.5ms)
4999
+  (0.2ms) ROLLBACK
5000
+  (0.1ms) BEGIN
5001
+ ------------------------------
5002
+ RecordTest: test_nilify_blanks
5003
+ ------------------------------
5004
+  (0.1ms) SAVEPOINT active_record_1
5005
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
5006
+  (0.1ms) ROLLBACK
5007
+  (0.1ms) BEGIN
5008
+ -------------------------
5009
+ RecordTest: test_validate
5010
+ -------------------------
5011
+  (0.1ms) ROLLBACK
5012
+  (0.1ms) BEGIN
5013
+ -------------------------------
5014
+ HelperTest: test_content_tag_if
5015
+ -------------------------------
5016
+  (0.1ms) ROLLBACK
5017
+  (0.1ms) BEGIN
5018
+ -----------------------------
5019
+ HelperTest: test_active_trail
5020
+ -----------------------------
5021
+  (0.2ms) ROLLBACK
5022
+  (0.1ms) BEGIN
5023
+ --------------------------
5024
+ HelperTest: test_extending
5025
+ --------------------------
5026
+ Rendered layouts/application.html.erb (0.2ms)
5027
+ Rendered layouts/market.html.erb (7.5ms)
5028
+  (0.2ms) ROLLBACK
5029
+  (0.1ms) BEGIN
5030
+ ------------------------------
5031
+ MailerTest: test_normalization
5032
+ ------------------------------
5033
+ Rendered user_mailer/invite.text.erb (0.2ms)
5034
+
5035
+ UserMailer#invite: processed outbound mail in 11.0ms
5036
+  (0.2ms) ROLLBACK
5037
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
5038
+  (0.2ms) BEGIN
5039
+ ---------------------------
5040
+ ControllerTest: test_render
5041
+ ---------------------------
5042
+  (0.1ms) ROLLBACK
5043
+  (0.1ms) BEGIN
5044
+ ------------------------------
5045
+ ControllerTest: test_callbacks
5046
+ ------------------------------
5047
+  (0.2ms) ROLLBACK
5048
+  (0.1ms) BEGIN
5049
+ -------------------------
5050
+ RecordTest: test_validate
5051
+ -------------------------
5052
+  (0.2ms) ROLLBACK
5053
+  (0.1ms) BEGIN
5054
+ ------------------------------
5055
+ RecordTest: test_nilify_blanks
5056
+ ------------------------------
5057
+  (0.1ms) SAVEPOINT active_record_1
5058
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:07:24.083311"], ["updated_at", "2016-12-15 19:07:24.083311"]]
5059
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5060
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 23]]
5061
+  (0.2ms) ROLLBACK
5062
+  (0.1ms) BEGIN
5063
+ ----------------------
5064
+ ViewTest: test_handler
5065
+ ----------------------
5066
+  (0.1ms) SAVEPOINT active_record_1
5067
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:07:24.091474"], ["updated_at", "2016-12-15 19:07:24.091474"]]
5068
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5069
+  (0.1ms) SAVEPOINT active_record_1
5070
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:07:24.092924"], ["updated_at", "2016-12-15 19:07:24.092924"]]
5071
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5072
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:07:24 -0300
5073
+ Processing by UsersController#index as JSON
5074
+ User Load (0.3ms) SELECT "users".* FROM "users"
5075
+ Rendered users/index.json.ruby (1.2ms)
5076
+ Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.3ms)
5077
+  (0.2ms) ROLLBACK
5078
+  (0.1ms) BEGIN
5079
+ ------------------------------
5080
+ MailerTest: test_normalization
5081
+ ------------------------------
5082
+ Rendered user_mailer/invite.text.erb (0.7ms)
5083
+
5084
+ UserMailer#invite: processed outbound mail in 13.0ms
5085
+  (0.2ms) ROLLBACK
5086
+  (0.1ms) BEGIN
5087
+ -------------------------------
5088
+ HelperTest: test_content_tag_if
5089
+ -------------------------------
5090
+  (0.1ms) ROLLBACK
5091
+  (0.1ms) BEGIN
5092
+ -----------------------------
5093
+ HelperTest: test_active_trail
5094
+ -----------------------------
5095
+  (0.1ms) ROLLBACK
5096
+  (0.1ms) BEGIN
5097
+ --------------------------
5098
+ HelperTest: test_extending
5099
+ --------------------------
5100
+ Rendered layouts/application.html.erb (0.3ms)
5101
+ Rendered layouts/market.html.erb (7.3ms)
5102
+  (0.3ms) ROLLBACK
5103
+  (0.1ms) BEGIN
5104
+ -------------------------
5105
+ ValidationTest: test_time
5106
+ -------------------------
5107
+  (0.1ms) ROLLBACK
5108
+  (0.1ms) BEGIN
5109
+ -------------------------------
5110
+ ValidationTest: test_complexity
5111
+ -------------------------------
5112
+  (0.1ms) ROLLBACK
5113
+  (0.1ms) BEGIN
5114
+ --------------------------
5115
+ ValidationTest: test_count
5116
+ --------------------------
5117
+  (0.1ms) ROLLBACK
5118
+  (0.1ms) BEGIN
5119
+ ----------------------------
5120
+ ValidationTest: test_methods
5121
+ ----------------------------
5122
+  (0.1ms) ROLLBACK
5123
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
5124
+  (0.2ms) BEGIN
5125
+ ------------------------------
5126
+ MailerTest: test_normalization
5127
+ ------------------------------
5128
+ Rendered user_mailer/invite.text.erb (0.7ms)
5129
+
5130
+ UserMailer#invite: processed outbound mail in 15.1ms
5131
+  (0.2ms) ROLLBACK
5132
+  (0.1ms) BEGIN
5133
+ ----------------------
5134
+ ViewTest: test_handler
5135
+ ----------------------
5136
+  (0.1ms) SAVEPOINT active_record_1
5137
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:08:06.915699"], ["updated_at", "2016-12-15 19:08:06.915699"]]
5138
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5139
+  (0.1ms) SAVEPOINT active_record_1
5140
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:08:06.918827"], ["updated_at", "2016-12-15 19:08:06.918827"]]
5141
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5142
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:08:06 -0300
5143
+ Processing by UsersController#index as JSON
5144
+ User Load (0.3ms) SELECT "users".* FROM "users"
5145
+ Rendered users/index.json.ruby (1.1ms)
5146
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.3ms)
5147
+  (0.2ms) ROLLBACK
5148
+  (0.1ms) BEGIN
5149
+ -------------------------------
5150
+ ValidationTest: test_complexity
5151
+ -------------------------------
5152
+  (0.1ms) ROLLBACK
5153
+  (0.1ms) BEGIN
5154
+ ----------------------------
5155
+ ValidationTest: test_methods
5156
+ ----------------------------
5157
+  (0.2ms) ROLLBACK
5158
+  (0.1ms) BEGIN
5159
+ --------------------------
5160
+ ValidationTest: test_count
5161
+ --------------------------
5162
+  (0.1ms) ROLLBACK
5163
+  (0.1ms) BEGIN
5164
+ -------------------------
5165
+ ValidationTest: test_time
5166
+ -------------------------
5167
+  (0.2ms) ROLLBACK
5168
+  (0.1ms) BEGIN
5169
+ ------------------------------
5170
+ ControllerTest: test_callbacks
5171
+ ------------------------------
5172
+  (0.1ms) ROLLBACK
5173
+  (0.1ms) BEGIN
5174
+ ---------------------------
5175
+ ControllerTest: test_render
5176
+ ---------------------------
5177
+  (0.1ms) ROLLBACK
5178
+  (0.1ms) BEGIN
5179
+ ------------------------------
5180
+ RecordTest: test_nilify_blanks
5181
+ ------------------------------
5182
+  (0.1ms) SAVEPOINT active_record_1
5183
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
5184
+  (0.1ms) ROLLBACK
5185
+  (0.1ms) BEGIN
5186
+ -------------------------
5187
+ RecordTest: test_validate
5188
+ -------------------------
5189
+  (0.1ms) ROLLBACK
5190
+  (0.2ms) BEGIN
5191
+ --------------------------
5192
+ HelperTest: test_extending
5193
+ --------------------------
5194
+ Rendered layouts/application.html.erb (0.2ms)
5195
+ Rendered layouts/market.html.erb (6.7ms)
5196
+  (0.2ms) ROLLBACK
5197
+  (0.1ms) BEGIN
5198
+ -----------------------------
5199
+ HelperTest: test_active_trail
5200
+ -----------------------------
5201
+  (0.1ms) ROLLBACK
5202
+  (0.1ms) BEGIN
5203
+ -------------------------------
5204
+ HelperTest: test_content_tag_if
5205
+ -------------------------------
5206
+  (0.1ms) ROLLBACK
5207
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
5208
+  (0.2ms) BEGIN
5209
+ ------------------------------
5210
+ MailerTest: test_normalization
5211
+ ------------------------------
5212
+ Rendered user_mailer/invite.text.erb (0.7ms)
5213
+
5214
+ UserMailer#invite: processed outbound mail in 16.3ms
5215
+  (0.2ms) ROLLBACK
5216
+  (0.1ms) BEGIN
5217
+ ------------------------------
5218
+ ControllerTest: test_callbacks
5219
+ ------------------------------
5220
+  (0.1ms) ROLLBACK
5221
+  (0.1ms) BEGIN
5222
+ ---------------------------
5223
+ ControllerTest: test_render
5224
+ ---------------------------
5225
+  (0.1ms) ROLLBACK
5226
+  (0.1ms) BEGIN
5227
+ -----------------------------
5228
+ HelperTest: test_active_trail
5229
+ -----------------------------
5230
+  (0.1ms) ROLLBACK
5231
+  (0.1ms) BEGIN
5232
+ -------------------------------
5233
+ HelperTest: test_content_tag_if
5234
+ -------------------------------
5235
+  (0.1ms) ROLLBACK
5236
+  (0.2ms) BEGIN
5237
+ --------------------------
5238
+ HelperTest: test_extending
5239
+ --------------------------
5240
+ Rendered layouts/application.html.erb (0.2ms)
5241
+ Rendered layouts/market.html.erb (6.8ms)
5242
+  (0.2ms) ROLLBACK
5243
+  (0.2ms) BEGIN
5244
+ ------------------------------
5245
+ RecordTest: test_nilify_blanks
5246
+ ------------------------------
5247
+  (0.1ms) SAVEPOINT active_record_1
5248
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:12:34.145778"], ["updated_at", "2016-12-15 19:12:34.145778"]]
5249
+  (0.2ms) RELEASE SAVEPOINT active_record_1
5250
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 28]]
5251
+  (0.2ms) ROLLBACK
5252
+  (0.1ms) BEGIN
5253
+ -------------------------
5254
+ RecordTest: test_validate
5255
+ -------------------------
5256
+  (0.1ms) ROLLBACK
5257
+  (0.1ms) BEGIN
5258
+ ----------------------
5259
+ ViewTest: test_handler
5260
+ ----------------------
5261
+  (0.1ms) SAVEPOINT active_record_1
5262
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:12:34.154559"], ["updated_at", "2016-12-15 19:12:34.154559"]]
5263
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5264
+  (0.1ms) SAVEPOINT active_record_1
5265
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:12:34.156020"], ["updated_at", "2016-12-15 19:12:34.156020"]]
5266
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5267
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:12:34 -0300
5268
+ Processing by UsersController#index as JSON
5269
+ User Load (0.3ms) SELECT "users".* FROM "users"
5270
+ Rendered users/index.json.ruby (1.0ms)
5271
+ Completed 200 OK in 5ms (Views: 4.6ms | ActiveRecord: 0.3ms)
5272
+  (0.2ms) ROLLBACK
5273
+  (0.2ms) BEGIN
5274
+ -------------------------------
5275
+ ValidationTest: test_complexity
5276
+ -------------------------------
5277
+  (0.2ms) ROLLBACK
5278
+  (0.1ms) BEGIN
5279
+ ----------------------------
5280
+ ValidationTest: test_methods
5281
+ ----------------------------
5282
+  (0.2ms) ROLLBACK
5283
+  (0.2ms) BEGIN
5284
+ -------------------------
5285
+ ValidationTest: test_time
5286
+ -------------------------
5287
+  (0.1ms) ROLLBACK
5288
+  (0.1ms) BEGIN
5289
+ --------------------------
5290
+ ValidationTest: test_count
5291
+ --------------------------
5292
+  (0.1ms) ROLLBACK
5293
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
5294
+  (0.2ms) BEGIN
5295
+ ------------------------------
5296
+ ControllerTest: test_callbacks
5297
+ ------------------------------
5298
+  (0.1ms) ROLLBACK
5299
+  (0.1ms) BEGIN
5300
+ ---------------------------
5301
+ ControllerTest: test_render
5302
+ ---------------------------
5303
+  (0.2ms) ROLLBACK
5304
+  (0.1ms) BEGIN
5305
+ ------------------------------
5306
+ RecordTest: test_nilify_blanks
5307
+ ------------------------------
5308
+  (0.1ms) SAVEPOINT active_record_1
5309
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:13:31.628387"], ["updated_at", "2016-12-15 19:13:31.628387"]]
5310
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5311
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 31]]
5312
+  (0.2ms) ROLLBACK
5313
+  (0.1ms) BEGIN
5314
+ -------------------------
5315
+ RecordTest: test_validate
5316
+ -------------------------
5317
+  (0.1ms) ROLLBACK
5318
+  (0.1ms) BEGIN
5319
+ ----------------------------
5320
+ ValidationTest: test_methods
5321
+ ----------------------------
5322
+  (0.1ms) ROLLBACK
5323
+  (0.1ms) BEGIN
5324
+ -------------------------------
5325
+ ValidationTest: test_complexity
5326
+ -------------------------------
5327
+  (0.1ms) ROLLBACK
5328
+  (0.1ms) BEGIN
5329
+ --------------------------
5330
+ ValidationTest: test_count
5331
+ --------------------------
5332
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
5333
+  (0.2ms) BEGIN
5334
+ ------------------------------
5335
+ MailerTest: test_normalization
5336
+ ------------------------------
5337
+ Rendered user_mailer/invite.text.erb (0.7ms)
5338
+
5339
+ UserMailer#invite: processed outbound mail in 14.9ms
5340
+  (0.2ms) ROLLBACK
5341
+  (0.1ms) BEGIN
5342
+ ------------------------------
5343
+ RecordTest: test_nilify_blanks
5344
+ ------------------------------
5345
+  (0.1ms) SAVEPOINT active_record_1
5346
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:14:21.866933"], ["updated_at", "2016-12-15 19:14:21.866933"]]
5347
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5348
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 32]]
5349
+  (0.2ms) ROLLBACK
5350
+  (0.1ms) BEGIN
5351
+ -------------------------
5352
+ RecordTest: test_validate
5353
+ -------------------------
5354
+  (0.1ms) ROLLBACK
5355
+  (0.1ms) BEGIN
5356
+ -------------------------------
5357
+ HelperTest: test_content_tag_if
5358
+ -------------------------------
5359
+  (0.1ms) ROLLBACK
5360
+  (0.1ms) BEGIN
5361
+ -----------------------------
5362
+ HelperTest: test_active_trail
5363
+ -----------------------------
5364
+  (0.1ms) ROLLBACK
5365
+  (0.1ms) BEGIN
5366
+ --------------------------
5367
+ HelperTest: test_extending
5368
+ --------------------------
5369
+ Rendered layouts/application.html.erb (0.3ms)
5370
+ Rendered layouts/market.html.erb (7.0ms)
5371
+  (0.2ms) ROLLBACK
5372
+  (0.1ms) BEGIN
5373
+ ---------------------------
5374
+ ControllerTest: test_render
5375
+ ---------------------------
5376
+  (0.1ms) ROLLBACK
5377
+  (0.1ms) BEGIN
5378
+ ------------------------------
5379
+ ControllerTest: test_callbacks
5380
+ ------------------------------
5381
+  (0.1ms) ROLLBACK
5382
+  (0.1ms) BEGIN
5383
+ ----------------------
5384
+ ViewTest: test_handler
5385
+ ----------------------
5386
+  (0.1ms) SAVEPOINT active_record_1
5387
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:14:21.896922"], ["updated_at", "2016-12-15 19:14:21.896922"]]
5388
+  (0.2ms) RELEASE SAVEPOINT active_record_1
5389
+  (0.1ms) SAVEPOINT active_record_1
5390
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:14:21.898435"], ["updated_at", "2016-12-15 19:14:21.898435"]]
5391
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5392
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:14:21 -0300
5393
+ Processing by UsersController#index as JSON
5394
+ User Load (0.3ms) SELECT "users".* FROM "users"
5395
+ Rendered users/index.json.ruby (1.1ms)
5396
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.3ms)
5397
+  (0.2ms) ROLLBACK
5398
+  (0.1ms) BEGIN
5399
+ ----------------------------
5400
+ ValidationTest: test_methods
5401
+ ----------------------------
5402
+  (0.1ms) ROLLBACK
5403
+  (0.1ms) BEGIN
5404
+ --------------------------
5405
+ ValidationTest: test_count
5406
+ --------------------------
5407
+  (0.2ms) ROLLBACK
5408
+  (0.1ms) BEGIN
5409
+ -------------------------
5410
+ ValidationTest: test_time
5411
+ -------------------------
5412
+  (0.2ms) ROLLBACK
5413
+  (0.1ms) BEGIN
5414
+ -------------------------------
5415
+ ValidationTest: test_complexity
5416
+ -------------------------------
5417
+  (0.1ms) ROLLBACK
5418
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
5419
+  (0.2ms) BEGIN
5420
+ ------------------------------
5421
+ ControllerTest: test_callbacks
5422
+ ------------------------------
5423
+  (0.1ms) ROLLBACK
5424
+  (0.1ms) BEGIN
5425
+ ---------------------------
5426
+ ControllerTest: test_render
5427
+ ---------------------------
5428
+  (0.2ms) ROLLBACK
5429
+  (0.1ms) BEGIN
5430
+ -------------------------------
5431
+ ValidationTest: test_complexity
5432
+ -------------------------------
5433
+  (0.2ms) ROLLBACK
5434
+  (0.1ms) BEGIN
5435
+ --------------------------
5436
+ ValidationTest: test_count
5437
+ --------------------------
5438
+  (0.2ms) ROLLBACK
5439
+  (0.1ms) BEGIN
5440
+ -------------------------
5441
+ ValidationTest: test_time
5442
+ -------------------------
5443
+  (0.1ms) ROLLBACK
5444
+  (0.1ms) BEGIN
5445
+ ----------------------------
5446
+ ValidationTest: test_methods
5447
+ ----------------------------
5448
+  (0.1ms) ROLLBACK
5449
+  (0.1ms) BEGIN
5450
+ ------------------------------
5451
+ RecordTest: test_nilify_blanks
5452
+ ------------------------------
5453
+  (0.2ms) SAVEPOINT active_record_1
5454
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
5455
+  (0.1ms) ROLLBACK
5456
+  (0.1ms) BEGIN
5457
+ -------------------------
5458
+ RecordTest: test_validate
5459
+ -------------------------
5460
+  (0.2ms) ROLLBACK
5461
+  (0.1ms) BEGIN
5462
+ -----------------------------
5463
+ HelperTest: test_active_trail
5464
+ -----------------------------
5465
+  (0.1ms) ROLLBACK
5466
+  (0.1ms) BEGIN
5467
+ --------------------------
5468
+ HelperTest: test_extending
5469
+ --------------------------
5470
+ Rendered layouts/application.html.erb (0.2ms)
5471
+ Rendered layouts/market.html.erb (8.1ms)
5472
+  (0.2ms) ROLLBACK
5473
+  (0.1ms) BEGIN
5474
+ -------------------------------
5475
+ HelperTest: test_content_tag_if
5476
+ -------------------------------
5477
+  (0.1ms) ROLLBACK
5478
+  (0.1ms) BEGIN
5479
+ ------------------------------
5480
+ MailerTest: test_normalization
5481
+ ------------------------------
5482
+ Rendered user_mailer/invite.text.erb (0.2ms)
5483
+
5484
+ UserMailer#invite: processed outbound mail in 10.5ms
5485
+  (0.2ms) ROLLBACK
5486
+  (0.1ms) BEGIN
5487
+ ----------------------
5488
+ ViewTest: test_handler
5489
+ ----------------------
5490
+  (0.1ms) SAVEPOINT active_record_1
5491
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
5492
+  (0.1ms) SAVEPOINT active_record_1
5493
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
5494
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:15:14 -0300
5495
+ Processing by UsersController#index as JSON
5496
+ User Load (0.4ms) SELECT "users".* FROM "users"
5497
+ Rendered users/index.json.ruby (1.0ms)
5498
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.4ms)
5499
+  (0.2ms) ROLLBACK
5500
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" character varying NOT NULL) 
5501
+  (0.9ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
5502
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
5503
+ Migrating to CreateUsers (20161020200126)
5504
+  (0.1ms) BEGIN
5505
+  (2.7ms) CREATE TABLE "users" ("id" serial primary key, "name" character varying, "created_at" timestamp NOT NULL, "updated_at" timestamp NOT NULL) 
5506
+ SQL (0.2ms) INSERT INTO "schema_migrations" ("version") VALUES ($1) [["version", "20161020200126"]]
5507
+  (0.5ms) COMMIT
5508
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
5509
+  (1.8ms) SELECT t2.oid::regclass::text AS to_table, a1.attname AS column, a2.attname AS primary_key, c.conname AS name, c.confupdtype AS on_update, c.confdeltype AS on_delete
5510
+ FROM pg_constraint c
5511
+ JOIN pg_class t1 ON c.conrelid = t1.oid
5512
+ JOIN pg_class t2 ON c.confrelid = t2.oid
5513
+ JOIN pg_attribute a1 ON a1.attnum = c.conkey[1] AND a1.attrelid = t1.oid
5514
+ JOIN pg_attribute a2 ON a2.attnum = c.confkey[1] AND a2.attrelid = t2.oid
5515
+ JOIN pg_namespace t3 ON c.connamespace = t3.oid
5516
+ WHERE c.contype = 'f'
5517
+ AND t1.relname = 'users'
5518
+ AND t3.nspname = ANY (current_schemas(false))
5519
+ ORDER BY c.conname
5520
+ 
5521
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
5522
+  (0.2ms) BEGIN
5523
+ ----------------------
5524
+ ViewTest: test_handler
5525
+ ----------------------
5526
+  (0.1ms) SAVEPOINT active_record_1
5527
+ SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:16:01.233882"], ["updated_at", "2016-12-15 19:16:01.233882"]]
5528
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5529
+  (0.1ms) SAVEPOINT active_record_1
5530
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:16:01.237301"], ["updated_at", "2016-12-15 19:16:01.237301"]]
5531
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5532
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:16:01 -0300
5533
+ Processing by UsersController#index as JSON
5534
+ User Load (0.3ms) SELECT "users".* FROM "users"
5535
+ Rendered users/index.json.ruby (1.2ms)
5536
+ Completed 200 OK in 7ms (Views: 6.8ms | ActiveRecord: 0.3ms)
5537
+  (0.2ms) ROLLBACK
5538
+  (0.1ms) BEGIN
5539
+ ------------------------------
5540
+ RecordTest: test_nilify_blanks
5541
+ ------------------------------
5542
+  (0.1ms) SAVEPOINT active_record_1
5543
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:16:01.256001"], ["updated_at", "2016-12-15 19:16:01.256001"]]
5544
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5545
+ User Load (0.4ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 3]]
5546
+  (0.2ms) ROLLBACK
5547
+  (0.1ms) BEGIN
5548
+ -------------------------
5549
+ RecordTest: test_validate
5550
+ -------------------------
5551
+  (0.1ms) ROLLBACK
5552
+  (0.1ms) BEGIN
5553
+ --------------------------
5554
+ HelperTest: test_extending
5555
+ --------------------------
5556
+ Rendered layouts/application.html.erb (0.2ms)
5557
+ Rendered layouts/market.html.erb (7.6ms)
5558
+  (0.2ms) ROLLBACK
5559
+  (0.1ms) BEGIN
5560
+ -----------------------------
5561
+ HelperTest: test_active_trail
5562
+ -----------------------------
5563
+  (0.1ms) ROLLBACK
5564
+  (0.1ms) BEGIN
5565
+ -------------------------------
5566
+ HelperTest: test_content_tag_if
5567
+ -------------------------------
5568
+  (0.1ms) ROLLBACK
5569
+  (0.1ms) BEGIN
5570
+ ------------------------------
5571
+ ControllerTest: test_callbacks
5572
+ ------------------------------
5573
+  (0.1ms) ROLLBACK
5574
+  (0.1ms) BEGIN
5575
+ ---------------------------
5576
+ ControllerTest: test_render
5577
+ ---------------------------
5578
+  (0.1ms) ROLLBACK
5579
+  (0.1ms) BEGIN
5580
+ ------------------------------
5581
+ MailerTest: test_normalization
5582
+ ------------------------------
5583
+ Rendered user_mailer/invite.text.erb (0.3ms)
5584
+
5585
+ UserMailer#invite: processed outbound mail in 12.6ms
5586
+  (0.2ms) ROLLBACK
5587
+  (0.1ms) BEGIN
5588
+ ----------------------------
5589
+ ValidationTest: test_methods
5590
+ ----------------------------
5591
+  (0.1ms) ROLLBACK
5592
+  (0.1ms) BEGIN
5593
+ --------------------------
5594
+ ValidationTest: test_count
5595
+ --------------------------
5596
+  (0.2ms) ROLLBACK
5597
+  (0.1ms) BEGIN
5598
+ -------------------------
5599
+ ValidationTest: test_time
5600
+ -------------------------
5601
+  (0.2ms) ROLLBACK
5602
+  (0.2ms) BEGIN
5603
+ -------------------------------
5604
+ ValidationTest: test_complexity
5605
+ -------------------------------
5606
+  (0.1ms) ROLLBACK
5607
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
5608
+  (0.2ms) BEGIN
5609
+ ------------------------------
5610
+ RecordTest: test_nilify_blanks
5611
+ ------------------------------
5612
+  (0.2ms) SAVEPOINT active_record_1
5613
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:16:21.654859"], ["updated_at", "2016-12-15 19:16:21.654859"]]
5614
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5615
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 4]]
5616
+  (0.2ms) ROLLBACK
5617
+  (0.1ms) BEGIN
5618
+ -------------------------
5619
+ RecordTest: test_validate
5620
+ -------------------------
5621
+  (0.1ms) ROLLBACK
5622
+  (0.1ms) BEGIN
5623
+ --------------------------
5624
+ ValidationTest: test_count
5625
+ --------------------------
5626
+  (0.2ms) ROLLBACK
5627
+  (0.1ms) BEGIN
5628
+ -------------------------
5629
+ ValidationTest: test_time
5630
+ -------------------------
5631
+  (0.2ms) ROLLBACK
5632
+  (0.1ms) BEGIN
5633
+ -------------------------------
5634
+ ValidationTest: test_complexity
5635
+ -------------------------------
5636
+  (0.1ms) ROLLBACK
5637
+  (0.1ms) BEGIN
5638
+ ----------------------------
5639
+ ValidationTest: test_methods
5640
+ ----------------------------
5641
+  (0.1ms) ROLLBACK
5642
+  (0.1ms) BEGIN
5643
+ -----------------------------
5644
+ HelperTest: test_active_trail
5645
+ -----------------------------
5646
+  (0.1ms) ROLLBACK
5647
+  (0.1ms) BEGIN
5648
+ --------------------------
5649
+ HelperTest: test_extending
5650
+ --------------------------
5651
+ Rendered layouts/application.html.erb (4.8ms)
5652
+ Rendered layouts/market.html.erb (12.2ms)
5653
+  (0.2ms) ROLLBACK
5654
+  (0.1ms) BEGIN
5655
+ -------------------------------
5656
+ HelperTest: test_content_tag_if
5657
+ -------------------------------
5658
+  (0.1ms) ROLLBACK
5659
+  (0.1ms) BEGIN
5660
+ ---------------------------
5661
+ ControllerTest: test_render
5662
+ ---------------------------
5663
+  (0.1ms) ROLLBACK
5664
+  (0.1ms) BEGIN
5665
+ ------------------------------
5666
+ ControllerTest: test_callbacks
5667
+ ------------------------------
5668
+  (0.1ms) ROLLBACK
5669
+  (0.1ms) BEGIN
5670
+ ----------------------
5671
+ ViewTest: test_handler
5672
+ ----------------------
5673
+  (0.1ms) SAVEPOINT active_record_1
5674
+  (0.2ms) ROLLBACK TO SAVEPOINT active_record_1
5675
+  (0.1ms) SAVEPOINT active_record_1
5676
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
5677
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:16:21 -0300
5678
+ Processing by UsersController#index as JSON
5679
+ User Load (0.3ms) SELECT "users".* FROM "users"
5680
+ Rendered users/index.json.ruby (1.0ms)
5681
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.3ms)
5682
+  (0.2ms) ROLLBACK
5683
+  (0.1ms) BEGIN
5684
+ ------------------------------
5685
+ MailerTest: test_normalization
5686
+ ------------------------------
5687
+ Rendered user_mailer/invite.text.erb (0.3ms)
5688
+
5689
+ UserMailer#invite: processed outbound mail in 10.0ms
5690
+  (0.2ms) ROLLBACK
5691
+ ActiveRecord::SchemaMigration Load (0.3ms) SELECT "schema_migrations".* FROM "schema_migrations"
5692
+  (0.4ms) BEGIN
5693
+ -----------------------------
5694
+ HelperTest: test_active_trail
5695
+ -----------------------------
5696
+  (0.1ms) ROLLBACK
5697
+  (0.1ms) BEGIN
5698
+ -------------------------------
5699
+ HelperTest: test_content_tag_if
5700
+ -------------------------------
5701
+  (0.1ms) ROLLBACK
5702
+  (0.1ms) BEGIN
5703
+ --------------------------
5704
+ HelperTest: test_extending
5705
+ --------------------------
5706
+ Rendered layouts/application.html.erb (0.3ms)
5707
+ Rendered layouts/market.html.erb (6.9ms)
5708
+  (0.2ms) ROLLBACK
5709
+  (0.1ms) BEGIN
5710
+ ----------------------------
5711
+ ValidationTest: test_methods
5712
+ ----------------------------
5713
+  (0.1ms) ROLLBACK
5714
+  (0.1ms) BEGIN
5715
+ -------------------------------
5716
+ ValidationTest: test_complexity
5717
+ -------------------------------
5718
+  (0.2ms) ROLLBACK
5719
+  (0.1ms) BEGIN
5720
+ -------------------------
5721
+ ValidationTest: test_time
5722
+ -------------------------
5723
+  (0.2ms) ROLLBACK
5724
+  (0.1ms) BEGIN
5725
+ --------------------------
5726
+ ValidationTest: test_count
5727
+ --------------------------
5728
+  (0.3ms) ROLLBACK
5729
+  (0.1ms) BEGIN
5730
+ ------------------------------
5731
+ MailerTest: test_normalization
5732
+ ------------------------------
5733
+ Rendered user_mailer/invite.text.erb (0.2ms)
5734
+
5735
+ UserMailer#invite: processed outbound mail in 9.3ms
5736
+  (0.2ms) ROLLBACK
5737
+  (0.1ms) BEGIN
5738
+ ------------------------------
5739
+ ControllerTest: test_callbacks
5740
+ ------------------------------
5741
+  (0.1ms) ROLLBACK
5742
+  (0.1ms) BEGIN
5743
+ ---------------------------
5744
+ ControllerTest: test_render
5745
+ ---------------------------
5746
+  (0.1ms) ROLLBACK
5747
+  (0.1ms) BEGIN
5748
+ ------------------------------
5749
+ RecordTest: test_nilify_blanks
5750
+ ------------------------------
5751
+  (0.1ms) SAVEPOINT active_record_1
5752
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:16:24.886511"], ["updated_at", "2016-12-15 19:16:24.886511"]]
5753
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5754
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 5]]
5755
+  (0.1ms) ROLLBACK
5756
+  (0.1ms) BEGIN
5757
+ -------------------------
5758
+ RecordTest: test_validate
5759
+ -------------------------
5760
+  (0.1ms) ROLLBACK
5761
+  (0.2ms) BEGIN
5762
+ ----------------------
5763
+ ViewTest: test_handler
5764
+ ----------------------
5765
+  (0.1ms) SAVEPOINT active_record_1
5766
+ SQL (0.4ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:16:24.895129"], ["updated_at", "2016-12-15 19:16:24.895129"]]
5767
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5768
+  (0.2ms) SAVEPOINT active_record_1
5769
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:16:24.897049"], ["updated_at", "2016-12-15 19:16:24.897049"]]
5770
+  (0.2ms) RELEASE SAVEPOINT active_record_1
5771
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:16:24 -0300
5772
+ Processing by UsersController#index as JSON
5773
+ User Load (0.3ms) SELECT "users".* FROM "users"
5774
+ Rendered users/index.json.ruby (1.0ms)
5775
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.3ms)
5776
+  (0.2ms) ROLLBACK
5777
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
5778
+  (0.3ms) BEGIN
5779
+ ----------------------------
5780
+ ValidationTest: test_methods
5781
+ ----------------------------
5782
+  (0.2ms) ROLLBACK
5783
+  (0.2ms) BEGIN
5784
+ -------------------------------
5785
+ ValidationTest: test_complexity
5786
+ -------------------------------
5787
+  (0.2ms) ROLLBACK
5788
+  (0.1ms) BEGIN
5789
+ -------------------------
5790
+ ValidationTest: test_time
5791
+ -------------------------
5792
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
5793
+  (0.2ms) BEGIN
5794
+ ----------------------
5795
+ ViewTest: test_handler
5796
+ ----------------------
5797
+  (0.1ms) SAVEPOINT active_record_1
5798
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:18:50.012989"], ["updated_at", "2016-12-15 19:18:50.012989"]]
5799
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5800
+  (0.1ms) SAVEPOINT active_record_1
5801
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:18:50.016056"], ["updated_at", "2016-12-15 19:18:50.016056"]]
5802
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5803
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:18:50 -0300
5804
+ Processing by UsersController#index as JSON
5805
+ User Load (0.4ms) SELECT "users".* FROM "users"
5806
+ Rendered users/index.json.ruby (1.3ms)
5807
+ Completed 200 OK in 8ms (Views: 7.3ms | ActiveRecord: 0.4ms)
5808
+  (0.2ms) ROLLBACK
5809
+  (0.1ms) BEGIN
5810
+ ------------------------------
5811
+ RecordTest: test_nilify_blanks
5812
+ ------------------------------
5813
+  (0.1ms) SAVEPOINT active_record_1
5814
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:18:50.035647"], ["updated_at", "2016-12-15 19:18:50.035647"]]
5815
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5816
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 10]]
5817
+  (0.1ms) ROLLBACK
5818
+  (0.1ms) BEGIN
5819
+ -------------------------
5820
+ RecordTest: test_validate
5821
+ -------------------------
5822
+  (0.1ms) ROLLBACK
5823
+  (0.1ms) BEGIN
5824
+ -------------------------------
5825
+ ValidationTest: test_complexity
5826
+ -------------------------------
5827
+  (0.2ms) ROLLBACK
5828
+  (0.1ms) BEGIN
5829
+ -------------------------
5830
+ ValidationTest: test_time
5831
+ -------------------------
5832
+  (0.2ms) ROLLBACK
5833
+  (0.1ms) BEGIN
5834
+ ----------------------------
5835
+ ValidationTest: test_methods
5836
+ ----------------------------
5837
+  (0.1ms) ROLLBACK
5838
+  (0.1ms) BEGIN
5839
+ --------------------------
5840
+ ValidationTest: test_count
5841
+ --------------------------
5842
+  (0.1ms) ROLLBACK
5843
+  (0.1ms) BEGIN
5844
+ -------------------------------
5845
+ HelperTest: test_content_tag_if
5846
+ -------------------------------
5847
+  (0.2ms) ROLLBACK
5848
+  (0.1ms) BEGIN
5849
+ --------------------------
5850
+ HelperTest: test_extending
5851
+ --------------------------
5852
+ Rendered layouts/application.html.erb (0.2ms)
5853
+ Rendered layouts/market.html.erb (7.1ms)
5854
+  (0.2ms) ROLLBACK
5855
+  (0.1ms) BEGIN
5856
+ -----------------------------
5857
+ HelperTest: test_active_trail
5858
+ -----------------------------
5859
+  (0.1ms) ROLLBACK
5860
+  (0.1ms) BEGIN
5861
+ ------------------------------
5862
+ ControllerTest: test_callbacks
5863
+ ------------------------------
5864
+  (0.1ms) ROLLBACK
5865
+  (0.1ms) BEGIN
5866
+ ---------------------------
5867
+ ControllerTest: test_render
5868
+ ---------------------------
5869
+  (0.1ms) ROLLBACK
5870
+  (0.1ms) BEGIN
5871
+ ------------------------------
5872
+ MailerTest: test_normalization
5873
+ ------------------------------
5874
+ Rendered user_mailer/invite.text.erb (0.3ms)
5875
+
5876
+ UserMailer#invite: processed outbound mail in 10.1ms
5877
+  (0.2ms) ROLLBACK
5878
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
5879
+  (0.2ms) BEGIN
5880
+ -------------------------------
5881
+ ValidationTest: test_complexity
5882
+ -------------------------------
5883
+  (0.2ms) ROLLBACK
5884
+  (0.1ms) BEGIN
5885
+ -------------------------
5886
+ ValidationTest: test_time
5887
+ -------------------------
5888
+  (0.2ms) ROLLBACK
5889
+  (0.1ms) BEGIN
5890
+ --------------------------
5891
+ ValidationTest: test_count
5892
+ --------------------------
5893
+  (0.2ms) ROLLBACK
5894
+  (0.1ms) BEGIN
5895
+ ----------------------------
5896
+ ValidationTest: test_methods
5897
+ ----------------------------
5898
+  (0.1ms) ROLLBACK
5899
+  (0.1ms) BEGIN
5900
+ ------------------------------
5901
+ MailerTest: test_normalization
5902
+ ------------------------------
5903
+ Rendered user_mailer/invite.text.erb (0.7ms)
5904
+
5905
+ UserMailer#invite: processed outbound mail in 12.7ms
5906
+  (0.2ms) ROLLBACK
5907
+  (0.1ms) BEGIN
5908
+ ------------------------------
5909
+ ControllerTest: test_callbacks
5910
+ ------------------------------
5911
+  (0.1ms) ROLLBACK
5912
+  (0.1ms) BEGIN
5913
+ ---------------------------
5914
+ ControllerTest: test_render
5915
+ ---------------------------
5916
+  (0.1ms) ROLLBACK
5917
+  (0.1ms) BEGIN
5918
+ ------------------------------
5919
+ RecordTest: test_nilify_blanks
5920
+ ------------------------------
5921
+  (0.1ms) SAVEPOINT active_record_1
5922
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:18:52.946860"], ["updated_at", "2016-12-15 19:18:52.946860"]]
5923
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5924
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 11]]
5925
+  (0.2ms) ROLLBACK
5926
+  (0.1ms) BEGIN
5927
+ -------------------------
5928
+ RecordTest: test_validate
5929
+ -------------------------
5930
+  (0.1ms) ROLLBACK
5931
+  (0.1ms) BEGIN
5932
+ -----------------------------
5933
+ HelperTest: test_active_trail
5934
+ -----------------------------
5935
+  (0.1ms) ROLLBACK
5936
+  (0.1ms) BEGIN
5937
+ -------------------------------
5938
+ HelperTest: test_content_tag_if
5939
+ -------------------------------
5940
+  (0.1ms) ROLLBACK
5941
+  (0.1ms) BEGIN
5942
+ --------------------------
5943
+ HelperTest: test_extending
5944
+ --------------------------
5945
+ Rendered layouts/application.html.erb (0.2ms)
5946
+ Rendered layouts/market.html.erb (6.7ms)
5947
+  (0.2ms) ROLLBACK
5948
+  (0.1ms) BEGIN
5949
+ ----------------------
5950
+ ViewTest: test_handler
5951
+ ----------------------
5952
+  (0.1ms) SAVEPOINT active_record_1
5953
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:18:52.974483"], ["updated_at", "2016-12-15 19:18:52.974483"]]
5954
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5955
+  (0.1ms) SAVEPOINT active_record_1
5956
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:18:52.976099"], ["updated_at", "2016-12-15 19:18:52.976099"]]
5957
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5958
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:18:52 -0300
5959
+ Processing by UsersController#index as JSON
5960
+ User Load (0.3ms) SELECT "users".* FROM "users"
5961
+ Rendered users/index.json.ruby (1.1ms)
5962
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.3ms)
5963
+  (0.1ms) ROLLBACK
5964
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
5965
+  (0.2ms) BEGIN
5966
+ ---------------------------
5967
+ ControllerTest: test_render
5968
+ ---------------------------
5969
+  (0.1ms) ROLLBACK
5970
+  (0.1ms) BEGIN
5971
+ ------------------------------
5972
+ ControllerTest: test_callbacks
5973
+ ------------------------------
5974
+  (0.1ms) ROLLBACK
5975
+  (0.1ms) BEGIN
5976
+ ------------------------------
5977
+ RecordTest: test_nilify_blanks
5978
+ ------------------------------
5979
+  (0.1ms) SAVEPOINT active_record_1
5980
+ SQL (0.4ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:18:55.382557"], ["updated_at", "2016-12-15 19:18:55.382557"]]
5981
+  (0.1ms) RELEASE SAVEPOINT active_record_1
5982
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 14]]
5983
+  (0.1ms) ROLLBACK
5984
+  (0.1ms) BEGIN
5985
+ -------------------------
5986
+ RecordTest: test_validate
5987
+ -------------------------
5988
+  (0.1ms) ROLLBACK
5989
+  (0.1ms) BEGIN
5990
+ ------------------------------
5991
+ MailerTest: test_normalization
5992
+ ------------------------------
5993
+ Rendered user_mailer/invite.text.erb (0.7ms)
5994
+
5995
+ UserMailer#invite: processed outbound mail in 15.5ms
5996
+  (0.2ms) ROLLBACK
5997
+  (0.1ms) BEGIN
5998
+ -----------------------------
5999
+ HelperTest: test_active_trail
6000
+ -----------------------------
6001
+  (0.1ms) ROLLBACK
6002
+  (0.1ms) BEGIN
6003
+ -------------------------------
6004
+ HelperTest: test_content_tag_if
6005
+ -------------------------------
6006
+  (0.1ms) ROLLBACK
6007
+  (0.1ms) BEGIN
6008
+ --------------------------
6009
+ HelperTest: test_extending
6010
+ --------------------------
6011
+ Rendered layouts/application.html.erb (0.2ms)
6012
+ Rendered layouts/market.html.erb (6.6ms)
6013
+  (0.2ms) ROLLBACK
6014
+  (0.1ms) BEGIN
6015
+ --------------------------
6016
+ ValidationTest: test_count
6017
+ --------------------------
6018
+  (0.2ms) ROLLBACK
6019
+  (0.1ms) BEGIN
6020
+ ----------------------------
6021
+ ValidationTest: test_methods
6022
+ ----------------------------
6023
+  (0.1ms) ROLLBACK
6024
+  (0.1ms) BEGIN
6025
+ -------------------------
6026
+ ValidationTest: test_time
6027
+ -------------------------
6028
+  (0.2ms) ROLLBACK
6029
+  (0.1ms) BEGIN
6030
+ -------------------------------
6031
+ ValidationTest: test_complexity
6032
+ -------------------------------
6033
+  (0.1ms) ROLLBACK
6034
+  (0.1ms) BEGIN
6035
+ ----------------------
6036
+ ViewTest: test_handler
6037
+ ----------------------
6038
+  (0.1ms) SAVEPOINT active_record_1
6039
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:18:55.584398"], ["updated_at", "2016-12-15 19:18:55.584398"]]
6040
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6041
+  (0.1ms) SAVEPOINT active_record_1
6042
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:18:55.585834"], ["updated_at", "2016-12-15 19:18:55.585834"]]
6043
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6044
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:18:55 -0300
6045
+ Processing by UsersController#index as JSON
6046
+ User Load (0.3ms) SELECT "users".* FROM "users"
6047
+ Rendered users/index.json.ruby (1.1ms)
6048
+ Completed 200 OK in 5ms (Views: 4.5ms | ActiveRecord: 0.3ms)
6049
+  (0.3ms) ROLLBACK
6050
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
6051
+  (0.2ms) BEGIN
6052
+ ------------------------------
6053
+ RecordTest: test_nilify_blanks
6054
+ ------------------------------
6055
+  (0.1ms) SAVEPOINT active_record_1
6056
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:18:57.771900"], ["updated_at", "2016-12-15 19:18:57.771900"]]
6057
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6058
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 17]]
6059
+  (0.1ms) ROLLBACK
6060
+  (0.1ms) BEGIN
6061
+ -------------------------
6062
+ RecordTest: test_validate
6063
+ -------------------------
6064
+  (0.1ms) ROLLBACK
6065
+  (0.1ms) BEGIN
6066
+ ------------------------------
6067
+ MailerTest: test_normalization
6068
+ ------------------------------
6069
+ Rendered user_mailer/invite.text.erb (0.6ms)
6070
+
6071
+ UserMailer#invite: processed outbound mail in 15.5ms
6072
+  (0.2ms) ROLLBACK
6073
+  (0.1ms) BEGIN
6074
+ ------------------------------
6075
+ ControllerTest: test_callbacks
6076
+ ------------------------------
6077
+  (0.1ms) ROLLBACK
6078
+  (0.1ms) BEGIN
6079
+ ---------------------------
6080
+ ControllerTest: test_render
6081
+ ---------------------------
6082
+  (0.1ms) ROLLBACK
6083
+  (0.1ms) BEGIN
6084
+ -----------------------------
6085
+ HelperTest: test_active_trail
6086
+ -----------------------------
6087
+  (0.1ms) ROLLBACK
6088
+  (0.1ms) BEGIN
6089
+ -------------------------------
6090
+ HelperTest: test_content_tag_if
6091
+ -------------------------------
6092
+  (0.1ms) ROLLBACK
6093
+  (0.1ms) BEGIN
6094
+ --------------------------
6095
+ HelperTest: test_extending
6096
+ --------------------------
6097
+ Rendered layouts/application.html.erb (0.5ms)
6098
+ Rendered layouts/market.html.erb (7.6ms)
6099
+  (0.2ms) ROLLBACK
6100
+  (0.1ms) BEGIN
6101
+ ----------------------
6102
+ ViewTest: test_handler
6103
+ ----------------------
6104
+  (0.1ms) SAVEPOINT active_record_1
6105
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:18:57.947094"], ["updated_at", "2016-12-15 19:18:57.947094"]]
6106
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6107
+  (0.1ms) SAVEPOINT active_record_1
6108
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:18:57.948559"], ["updated_at", "2016-12-15 19:18:57.948559"]]
6109
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6110
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:18:57 -0300
6111
+ Processing by UsersController#index as JSON
6112
+ User Load (0.3ms) SELECT "users".* FROM "users"
6113
+ Rendered users/index.json.ruby (1.2ms)
6114
+ Completed 200 OK in 5ms (Views: 4.7ms | ActiveRecord: 0.3ms)
6115
+  (0.2ms) ROLLBACK
6116
+  (0.1ms) BEGIN
6117
+ -------------------------
6118
+ ValidationTest: test_time
6119
+ -------------------------
6120
+  (0.2ms) ROLLBACK
6121
+  (0.1ms) BEGIN
6122
+ --------------------------
6123
+ ValidationTest: test_count
6124
+ --------------------------
6125
+  (0.2ms) ROLLBACK
6126
+  (0.1ms) BEGIN
6127
+ ----------------------------
6128
+ ValidationTest: test_methods
6129
+ ----------------------------
6130
+  (0.1ms) ROLLBACK
6131
+  (0.1ms) BEGIN
6132
+ -------------------------------
6133
+ ValidationTest: test_complexity
6134
+ -------------------------------
6135
+  (0.1ms) ROLLBACK
6136
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
6137
+  (0.2ms) BEGIN
6138
+ ------------------------------
6139
+ ControllerTest: test_callbacks
6140
+ ------------------------------
6141
+  (0.1ms) ROLLBACK
6142
+  (0.1ms) BEGIN
6143
+ ---------------------------
6144
+ ControllerTest: test_render
6145
+ ---------------------------
6146
+  (0.1ms) ROLLBACK
6147
+  (0.1ms) BEGIN
6148
+ ----------------------
6149
+ ViewTest: test_handler
6150
+ ----------------------
6151
+  (0.1ms) SAVEPOINT active_record_1
6152
+ SQL (0.6ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:19:00.084900"], ["updated_at", "2016-12-15 19:19:00.084900"]]
6153
+  (0.2ms) RELEASE SAVEPOINT active_record_1
6154
+  (0.1ms) SAVEPOINT active_record_1
6155
+ SQL (0.5ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:19:00.088969"], ["updated_at", "2016-12-15 19:19:00.088969"]]
6156
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6157
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:19:00 -0300
6158
+ Processing by UsersController#index as JSON
6159
+ User Load (0.3ms) SELECT "users".* FROM "users"
6160
+ Rendered users/index.json.ruby (1.4ms)
6161
+ Completed 200 OK in 8ms (Views: 7.2ms | ActiveRecord: 0.3ms)
6162
+  (0.2ms) ROLLBACK
6163
+  (0.1ms) BEGIN
6164
+ ------------------------------
6165
+ MailerTest: test_normalization
6166
+ ------------------------------
6167
+ Rendered user_mailer/invite.text.erb (0.8ms)
6168
+
6169
+ UserMailer#invite: processed outbound mail in 13.4ms
6170
+  (0.2ms) ROLLBACK
6171
+  (0.1ms) BEGIN
6172
+ -----------------------------
6173
+ HelperTest: test_active_trail
6174
+ -----------------------------
6175
+  (0.1ms) ROLLBACK
6176
+  (0.1ms) BEGIN
6177
+ -------------------------------
6178
+ HelperTest: test_content_tag_if
6179
+ -------------------------------
6180
+  (0.1ms) ROLLBACK
6181
+  (0.1ms) BEGIN
6182
+ --------------------------
6183
+ HelperTest: test_extending
6184
+ --------------------------
6185
+ Rendered layouts/application.html.erb (0.2ms)
6186
+ Rendered layouts/market.html.erb (7.0ms)
6187
+  (0.2ms) ROLLBACK
6188
+  (0.1ms) BEGIN
6189
+ --------------------------
6190
+ ValidationTest: test_count
6191
+ --------------------------
6192
+  (0.2ms) ROLLBACK
6193
+  (0.1ms) BEGIN
6194
+ -------------------------
6195
+ ValidationTest: test_time
6196
+ -------------------------
6197
+  (0.2ms) ROLLBACK
6198
+  (0.1ms) BEGIN
6199
+ ----------------------------
6200
+ ValidationTest: test_methods
6201
+ ----------------------------
6202
+  (0.1ms) ROLLBACK
6203
+  (0.1ms) BEGIN
6204
+ -------------------------------
6205
+ ValidationTest: test_complexity
6206
+ -------------------------------
6207
+  (0.2ms) ROLLBACK
6208
+  (0.1ms) BEGIN
6209
+ ------------------------------
6210
+ RecordTest: test_nilify_blanks
6211
+ ------------------------------
6212
+  (0.1ms) SAVEPOINT active_record_1
6213
+ SQL (0.2ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:19:00.298894"], ["updated_at", "2016-12-15 19:19:00.298894"]]
6214
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6215
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 22]]
6216
+  (0.1ms) ROLLBACK
6217
+  (0.1ms) BEGIN
6218
+ -------------------------
6219
+ RecordTest: test_validate
6220
+ -------------------------
6221
+  (0.1ms) ROLLBACK
6222
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
6223
+  (0.2ms) BEGIN
6224
+ ------------------------------
6225
+ MailerTest: test_normalization
6226
+ ------------------------------
6227
+ Rendered user_mailer/invite.text.erb (0.7ms)
6228
+
6229
+ UserMailer#invite: processed outbound mail in 15.2ms
6230
+  (0.2ms) ROLLBACK
6231
+  (0.1ms) BEGIN
6232
+ ------------------------------
6233
+ RecordTest: test_nilify_blanks
6234
+ ------------------------------
6235
+  (0.1ms) SAVEPOINT active_record_1
6236
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:19:02.628803"], ["updated_at", "2016-12-15 19:19:02.628803"]]
6237
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6238
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 23]]
6239
+  (0.1ms) ROLLBACK
6240
+  (0.1ms) BEGIN
6241
+ -------------------------
6242
+ RecordTest: test_validate
6243
+ -------------------------
6244
+  (0.1ms) ROLLBACK
6245
+  (0.1ms) BEGIN
6246
+ --------------------------
6247
+ ValidationTest: test_count
6248
+ --------------------------
6249
+  (0.2ms) ROLLBACK
6250
+  (0.1ms) BEGIN
6251
+ -------------------------------
6252
+ ValidationTest: test_complexity
6253
+ -------------------------------
6254
+  (0.1ms) ROLLBACK
6255
+  (0.1ms) BEGIN
6256
+ ----------------------------
6257
+ ValidationTest: test_methods
6258
+ ----------------------------
6259
+  (0.1ms) ROLLBACK
6260
+  (0.1ms) BEGIN
6261
+ -------------------------
6262
+ ValidationTest: test_time
6263
+ -------------------------
6264
+  (0.2ms) ROLLBACK
6265
+  (0.1ms) BEGIN
6266
+ ------------------------------
6267
+ ControllerTest: test_callbacks
6268
+ ------------------------------
6269
+  (0.1ms) ROLLBACK
6270
+  (0.1ms) BEGIN
6271
+ ---------------------------
6272
+ ControllerTest: test_render
6273
+ ---------------------------
6274
+  (0.1ms) ROLLBACK
6275
+  (0.1ms) BEGIN
6276
+ --------------------------
6277
+ HelperTest: test_extending
6278
+ --------------------------
6279
+ Rendered layouts/application.html.erb (0.2ms)
6280
+ Rendered layouts/market.html.erb (6.8ms)
6281
+  (0.2ms) ROLLBACK
6282
+  (0.1ms) BEGIN
6283
+ -----------------------------
6284
+ HelperTest: test_active_trail
6285
+ -----------------------------
6286
+  (0.1ms) ROLLBACK
6287
+  (0.1ms) BEGIN
6288
+ -------------------------------
6289
+ HelperTest: test_content_tag_if
6290
+ -------------------------------
6291
+  (0.1ms) ROLLBACK
6292
+  (0.1ms) BEGIN
6293
+ ----------------------
6294
+ ViewTest: test_handler
6295
+ ----------------------
6296
+  (0.1ms) SAVEPOINT active_record_1
6297
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:19:02.685319"], ["updated_at", "2016-12-15 19:19:02.685319"]]
6298
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6299
+  (0.1ms) SAVEPOINT active_record_1
6300
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:19:02.686731"], ["updated_at", "2016-12-15 19:19:02.686731"]]
6301
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6302
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:19:02 -0300
6303
+ Processing by UsersController#index as JSON
6304
+ User Load (0.3ms) SELECT "users".* FROM "users"
6305
+ Rendered users/index.json.ruby (1.1ms)
6306
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.3ms)
6307
+  (0.1ms) ROLLBACK
6308
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
6309
+  (0.2ms) BEGIN
6310
+ -----------------------------
6311
+ HelperTest: test_active_trail
6312
+ -----------------------------
6313
+  (0.1ms) ROLLBACK
6314
+  (0.1ms) BEGIN
6315
+ --------------------------
6316
+ HelperTest: test_extending
6317
+ --------------------------
6318
+ Rendered layouts/application.html.erb (0.2ms)
6319
+ Rendered layouts/market.html.erb (8.2ms)
6320
+  (0.2ms) ROLLBACK
6321
+  (0.1ms) BEGIN
6322
+ -------------------------------
6323
+ HelperTest: test_content_tag_if
6324
+ -------------------------------
6325
+  (0.1ms) ROLLBACK
6326
+  (0.1ms) BEGIN
6327
+ ------------------------------
6328
+ RecordTest: test_nilify_blanks
6329
+ ------------------------------
6330
+  (0.1ms) SAVEPOINT active_record_1
6331
+ SQL (0.9ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:19:04.920459"], ["updated_at", "2016-12-15 19:19:04.920459"]]
6332
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6333
+ User Load (0.3ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 26]]
6334
+  (0.2ms) ROLLBACK
6335
+  (0.1ms) BEGIN
6336
+ -------------------------
6337
+ RecordTest: test_validate
6338
+ -------------------------
6339
+  (0.1ms) ROLLBACK
6340
+  (0.1ms) BEGIN
6341
+ ------------------------------
6342
+ ControllerTest: test_callbacks
6343
+ ------------------------------
6344
+  (0.3ms) ROLLBACK
6345
+  (0.1ms) BEGIN
6346
+ ---------------------------
6347
+ ControllerTest: test_render
6348
+ ---------------------------
6349
+  (0.1ms) ROLLBACK
6350
+  (0.2ms) BEGIN
6351
+ ----------------------
6352
+ ViewTest: test_handler
6353
+ ----------------------
6354
+  (0.1ms) SAVEPOINT active_record_1
6355
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:19:04.936519"], ["updated_at", "2016-12-15 19:19:04.936519"]]
6356
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6357
+  (0.1ms) SAVEPOINT active_record_1
6358
+ SQL (0.1ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:19:04.937911"], ["updated_at", "2016-12-15 19:19:04.937911"]]
6359
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6360
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:19:04 -0300
6361
+ Processing by UsersController#index as JSON
6362
+ User Load (0.3ms) SELECT "users".* FROM "users"
6363
+ Rendered users/index.json.ruby (1.0ms)
6364
+ Completed 200 OK in 6ms (Views: 5.1ms | ActiveRecord: 0.3ms)
6365
+  (0.2ms) ROLLBACK
6366
+  (0.1ms) BEGIN
6367
+ ------------------------------
6368
+ MailerTest: test_normalization
6369
+ ------------------------------
6370
+ Rendered user_mailer/invite.text.erb (0.3ms)
6371
+
6372
+ UserMailer#invite: processed outbound mail in 12.9ms
6373
+  (0.2ms) ROLLBACK
6374
+  (0.1ms) BEGIN
6375
+ -------------------------------
6376
+ ValidationTest: test_complexity
6377
+ -------------------------------
6378
+  (0.2ms) ROLLBACK
6379
+  (0.1ms) BEGIN
6380
+ --------------------------
6381
+ ValidationTest: test_count
6382
+ --------------------------
6383
+  (0.2ms) ROLLBACK
6384
+  (0.3ms) BEGIN
6385
+ ----------------------------
6386
+ ValidationTest: test_methods
6387
+ ----------------------------
6388
+  (0.2ms) ROLLBACK
6389
+  (0.1ms) BEGIN
6390
+ -------------------------
6391
+ ValidationTest: test_time
6392
+ -------------------------
6393
+  (0.2ms) ROLLBACK
6394
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
6395
+  (0.2ms) BEGIN
6396
+ ------------------------------
6397
+ MailerTest: test_normalization
6398
+ ------------------------------
6399
+ Rendered user_mailer/invite.text.erb (0.7ms)
6400
+
6401
+ UserMailer#invite: processed outbound mail in 15.8ms
6402
+  (0.2ms) ROLLBACK
6403
+  (0.1ms) BEGIN
6404
+ ------------------------------
6405
+ RecordTest: test_nilify_blanks
6406
+ ------------------------------
6407
+  (0.1ms) SAVEPOINT active_record_1
6408
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:19:07.390061"], ["updated_at", "2016-12-15 19:19:07.390061"]]
6409
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6410
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 29]]
6411
+  (0.1ms) ROLLBACK
6412
+  (0.1ms) BEGIN
6413
+ -------------------------
6414
+ RecordTest: test_validate
6415
+ -------------------------
6416
+  (0.1ms) ROLLBACK
6417
+  (0.1ms) BEGIN
6418
+ -------------------------------
6419
+ ValidationTest: test_complexity
6420
+ -------------------------------
6421
+  (0.1ms) ROLLBACK
6422
+  (0.1ms) BEGIN
6423
+ --------------------------
6424
+ ValidationTest: test_count
6425
+ --------------------------
6426
+  (0.2ms) ROLLBACK
6427
+  (0.1ms) BEGIN
6428
+ ----------------------------
6429
+ ValidationTest: test_methods
6430
+ ----------------------------
6431
+  (0.1ms) ROLLBACK
6432
+  (0.1ms) BEGIN
6433
+ -------------------------
6434
+ ValidationTest: test_time
6435
+ -------------------------
6436
+  (0.2ms) ROLLBACK
6437
+  (0.1ms) BEGIN
6438
+ ------------------------------
6439
+ ControllerTest: test_callbacks
6440
+ ------------------------------
6441
+  (0.1ms) ROLLBACK
6442
+  (0.1ms) BEGIN
6443
+ ---------------------------
6444
+ ControllerTest: test_render
6445
+ ---------------------------
6446
+  (0.1ms) ROLLBACK
6447
+  (0.1ms) BEGIN
6448
+ ----------------------
6449
+ ViewTest: test_handler
6450
+ ----------------------
6451
+  (0.1ms) SAVEPOINT active_record_1
6452
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:19:07.427446"], ["updated_at", "2016-12-15 19:19:07.427446"]]
6453
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6454
+  (0.1ms) SAVEPOINT active_record_1
6455
+ SQL (0.2ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:19:07.429004"], ["updated_at", "2016-12-15 19:19:07.429004"]]
6456
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6457
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:19:07 -0300
6458
+ Processing by UsersController#index as JSON
6459
+ User Load (0.3ms) SELECT "users".* FROM "users"
6460
+ Rendered users/index.json.ruby (1.0ms)
6461
+ Completed 200 OK in 5ms (Views: 4.4ms | ActiveRecord: 0.3ms)
6462
+  (0.1ms) ROLLBACK
6463
+  (0.1ms) BEGIN
6464
+ -----------------------------
6465
+ HelperTest: test_active_trail
6466
+ -----------------------------
6467
+  (0.1ms) ROLLBACK
6468
+  (0.1ms) BEGIN
6469
+ --------------------------
6470
+ HelperTest: test_extending
6471
+ --------------------------
6472
+ Rendered layouts/application.html.erb (0.3ms)
6473
+ Rendered layouts/market.html.erb (7.2ms)
6474
+  (0.2ms) ROLLBACK
6475
+  (0.1ms) BEGIN
6476
+ -------------------------------
6477
+ HelperTest: test_content_tag_if
6478
+ -------------------------------
6479
+  (0.1ms) ROLLBACK
6480
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
6481
+  (0.2ms) BEGIN
6482
+ -------------------------
6483
+ RecordTest: test_validate
6484
+ -------------------------
6485
+  (0.1ms) ROLLBACK
6486
+  (0.1ms) BEGIN
6487
+ ------------------------------
6488
+ RecordTest: test_nilify_blanks
6489
+ ------------------------------
6490
+  (0.1ms) SAVEPOINT active_record_1
6491
+ SQL (0.3ms) INSERT INTO "users" ("created_at", "updated_at") VALUES ($1, $2) RETURNING "id" [["created_at", "2016-12-15 19:19:09.641468"], ["updated_at", "2016-12-15 19:19:09.641468"]]
6492
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6493
+ User Load (0.2ms) SELECT "users".* FROM "users" WHERE "users"."id" = $1 LIMIT 1 [["id", 32]]
6494
+  (0.1ms) ROLLBACK
6495
+  (0.1ms) BEGIN
6496
+ ----------------------
6497
+ ViewTest: test_handler
6498
+ ----------------------
6499
+  (0.1ms) SAVEPOINT active_record_1
6500
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "mario"], ["created_at", "2016-12-15 19:19:09.649189"], ["updated_at", "2016-12-15 19:19:09.649189"]]
6501
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6502
+  (0.1ms) SAVEPOINT active_record_1
6503
+ SQL (0.3ms) INSERT INTO "users" ("name", "created_at", "updated_at") VALUES ($1, $2, $3) RETURNING "id" [["name", "juan"], ["created_at", "2016-12-15 19:19:09.650883"], ["updated_at", "2016-12-15 19:19:09.650883"]]
6504
+  (0.1ms) RELEASE SAVEPOINT active_record_1
6505
+ Started GET "/users.json" for 127.0.0.1 at 2016-12-15 16:19:09 -0300
6506
+ Processing by UsersController#index as JSON
6507
+ User Load (0.3ms) SELECT "users".* FROM "users"
6508
+ Rendered users/index.json.ruby (1.2ms)
6509
+ Completed 200 OK in 9ms (Views: 8.8ms | ActiveRecord: 0.3ms)
6510
+  (0.1ms) ROLLBACK
6511
+  (0.1ms) BEGIN
6512
+ ------------------------------
6513
+ MailerTest: test_normalization
6514
+ ------------------------------
6515
+ Rendered user_mailer/invite.text.erb (0.8ms)
6516
+
6517
+ UserMailer#invite: processed outbound mail in 13.7ms
6518
+  (0.2ms) ROLLBACK
6519
+  (0.1ms) BEGIN
6520
+ --------------------------
6521
+ ValidationTest: test_count
6522
+ --------------------------
6523
+  (0.2ms) ROLLBACK
6524
+  (0.1ms) BEGIN
6525
+ ----------------------------
6526
+ ValidationTest: test_methods
6527
+ ----------------------------
6528
+  (0.1ms) ROLLBACK
6529
+  (0.1ms) BEGIN
6530
+ -------------------------------
6531
+ ValidationTest: test_complexity
6532
+ -------------------------------
6533
+  (0.1ms) ROLLBACK
6534
+  (0.1ms) BEGIN
6535
+ -------------------------
6536
+ ValidationTest: test_time
6537
+ -------------------------
6538
+  (0.2ms) ROLLBACK
6539
+  (0.1ms) BEGIN
6540
+ -----------------------------
6541
+ HelperTest: test_active_trail
6542
+ -----------------------------
6543
+  (0.1ms) ROLLBACK
6544
+  (0.1ms) BEGIN
6545
+ -------------------------------
6546
+ HelperTest: test_content_tag_if
6547
+ -------------------------------
6548
+  (0.1ms) ROLLBACK
6549
+  (0.1ms) BEGIN
6550
+ --------------------------
6551
+ HelperTest: test_extending
6552
+ --------------------------
6553
+ Rendered layouts/application.html.erb (0.2ms)
6554
+ Rendered layouts/market.html.erb (6.7ms)
6555
+  (0.2ms) ROLLBACK
6556
+  (0.1ms) BEGIN
6557
+ ------------------------------
6558
+ ControllerTest: test_callbacks
6559
+ ------------------------------
6560
+  (0.1ms) ROLLBACK
6561
+  (0.2ms) BEGIN
6562
+ ---------------------------
6563
+ ControllerTest: test_render
6564
+ ---------------------------
6565
+  (0.1ms) ROLLBACK