before_actions 1.0.3 → 2.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/before_actions.rb +3 -8
- data/lib/before_actions/controller/controller.rb +18 -0
- data/lib/before_actions/controller/scope.rb +24 -0
- data/lib/before_actions/monkey_patching.rb +5 -0
- data/lib/before_actions/version.rb +1 -1
- data/spec/controllers/bunny_controller_spec.rb +29 -0
- data/spec/controllers/cat_controller_spec.rb +29 -0
- data/spec/controllers/dog_controller_spec.rb +29 -0
- data/spec/controllers/squirrel_controller_spec.rb +29 -0
- data/spec/dummy/app/controllers/admin_foos_controller.rb +5 -5
- data/spec/dummy/app/controllers/bunny_controller.rb +24 -0
- data/spec/dummy/app/controllers/cat_controller.rb +19 -0
- data/spec/dummy/app/controllers/dog_controller.rb +18 -0
- data/spec/dummy/app/controllers/foos_controller.rb +6 -6
- data/spec/dummy/app/controllers/squirrel_controller.rb +16 -0
- data/spec/dummy/app/views/bunny/one.html.erb +2 -0
- data/spec/dummy/app/views/bunny/three.html.erb +2 -0
- data/spec/dummy/app/views/bunny/two.html.erb +2 -0
- data/spec/dummy/app/views/cat/one.html.erb +2 -0
- data/spec/dummy/app/views/cat/three.html.erb +2 -0
- data/spec/dummy/app/views/cat/two.html.erb +2 -0
- data/spec/dummy/app/views/dog/one.html.erb +2 -0
- data/spec/dummy/app/views/dog/three.html.erb +2 -0
- data/spec/dummy/app/views/dog/two.html.erb +2 -0
- data/spec/dummy/app/views/squirrel/one.html.erb +2 -0
- data/spec/dummy/app/views/squirrel/three.html.erb +2 -0
- data/spec/dummy/app/views/squirrel/two.html.erb +2 -0
- data/spec/dummy/config/routes.rb +18 -2
- data/spec/dummy/lib/templates/rails/scaffold_controller/controller.rb +25 -21
- data/spec/dummy/log/test.log +2700 -0
- metadata +47 -6
- data/app/controllers/before_actions/foo_controller.rb +0 -8
- data/lib/before_actions/controller.rb +0 -47
data/spec/dummy/log/test.log
CHANGED
@@ -1588,3 +1588,2703 @@ Processing by FoosController#destroy as HTML
|
|
1588
1588
|
Redirected to http://test.host/foos
|
1589
1589
|
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
1590
1590
|
[1m[35m (0.6ms)[0m rollback transaction
|
1591
|
+
[1m[36m (1.5ms)[0m [1mCREATE TABLE "admin_foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "bar" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
1592
|
+
[1m[35m (0.9ms)[0m CREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "bar" varchar(255), "created_at" datetime, "updated_at" datetime)
|
1593
|
+
[1m[36m (0.9ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1594
|
+
[1m[35m (0.4ms)[0m select sqlite_version(*)
|
1595
|
+
[1m[36m (1.0ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1596
|
+
[1m[35m (0.1ms)[0m SELECT version FROM "schema_migrations"
|
1597
|
+
[1m[36m (0.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140912042735')[0m
|
1598
|
+
[1m[35m (0.8ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140912040816')
|
1599
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1600
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1601
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1602
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.213589"], ["updated_at", "2014-09-12 05:29:41.213589"]]
|
1603
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1604
|
+
Processing by AdminFoosController#index as HTML
|
1605
|
+
Rendered admin_foos/index.html.erb within layouts/application (0.7ms)
|
1606
|
+
Completed 200 OK in 12ms (Views: 11.5ms | ActiveRecord: 0.0ms)
|
1607
|
+
[1m[35mAdminFoo Load (0.2ms)[0m SELECT "admin_foos".* FROM "admin_foos"
|
1608
|
+
[1m[36m (1.1ms)[0m [1mrollback transaction[0m
|
1609
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1610
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1611
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.242465"], ["updated_at", "2014-09-12 05:29:41.242465"]]
|
1612
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1613
|
+
Processing by AdminFoosController#show as HTML
|
1614
|
+
Parameters: {"id"=>"1"}
|
1615
|
+
[1m[35mAdminFoo Load (0.2ms)[0m SELECT "admin_foos".* FROM "admin_foos" WHERE "admin_foos"."id" = ? LIMIT 1 [["id", 1]]
|
1616
|
+
Completed 200 OK in 4ms (Views: 2.0ms | ActiveRecord: 0.2ms)
|
1617
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1618
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1619
|
+
Processing by AdminFoosController#new as HTML
|
1620
|
+
Filter chain halted as #<Proc:0x007fcdc6bb5d00@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
1621
|
+
Completed 401 Unauthorized in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
1622
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1623
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1624
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1625
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.259215"], ["updated_at", "2014-09-12 05:29:41.259215"]]
|
1626
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1627
|
+
Processing by AdminFoosController#edit as HTML
|
1628
|
+
Parameters: {"id"=>"1"}
|
1629
|
+
Filter chain halted as #<Proc:0x007fcdc6bb5d00@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
1630
|
+
Completed 401 Unauthorized in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1631
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1632
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1633
|
+
Processing by AdminFoosController#create as HTML
|
1634
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}}
|
1635
|
+
Filter chain halted as #<Proc:0x007fcdc6bb5d00@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
1636
|
+
Completed 401 Unauthorized in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1637
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1638
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1639
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1640
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.270801"], ["updated_at", "2014-09-12 05:29:41.270801"]]
|
1641
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1642
|
+
Processing by AdminFoosController#update as HTML
|
1643
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
1644
|
+
Filter chain halted as #<Proc:0x007fcdc6bb5d00@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
1645
|
+
Completed 401 Unauthorized in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
1646
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1647
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1648
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1649
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.276756"], ["updated_at", "2014-09-12 05:29:41.276756"]]
|
1650
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1651
|
+
Processing by AdminFoosController#destroy as HTML
|
1652
|
+
Parameters: {"id"=>"1"}
|
1653
|
+
Filter chain halted as #<Proc:0x007fcdc6bb5d00@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
1654
|
+
Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1655
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1656
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1657
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1658
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.287857"], ["updated_at", "2014-09-12 05:29:41.287857"]]
|
1659
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1660
|
+
Processing by FoosController#index as HTML
|
1661
|
+
Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
1662
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos"[0m
|
1663
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1664
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
1665
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1666
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.298788"], ["updated_at", "2014-09-12 05:29:41.298788"]]
|
1667
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1668
|
+
Processing by FoosController#show as HTML
|
1669
|
+
Parameters: {"id"=>"1"}
|
1670
|
+
[1m[36mFoo Load (0.2ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
1671
|
+
Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.2ms)
|
1672
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1673
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1674
|
+
Processing by FoosController#new as HTML
|
1675
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
1676
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1677
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1678
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1679
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.312349"], ["updated_at", "2014-09-12 05:29:41.312349"]]
|
1680
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1681
|
+
Processing by FoosController#edit as HTML
|
1682
|
+
Parameters: {"id"=>"1"}
|
1683
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
1684
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
1685
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1686
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1687
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "foos"
|
1688
|
+
Processing by FoosController#create as HTML
|
1689
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
1690
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1691
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.329278"], ["updated_at", "2014-09-12 05:29:41.329278"]]
|
1692
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1693
|
+
Redirected to http://test.host/foos/1
|
1694
|
+
Completed 302 Found in 6ms (ActiveRecord: 0.7ms)
|
1695
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
1696
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1697
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1698
|
+
Processing by FoosController#create as HTML
|
1699
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
1700
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1701
|
+
[1m[35mSQL (1.2ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.341392"], ["updated_at", "2014-09-12 05:29:41.341392"]]
|
1702
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1703
|
+
Redirected to http://test.host/foos/1
|
1704
|
+
Completed 302 Found in 7ms (ActiveRecord: 1.4ms)
|
1705
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1706
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1707
|
+
Processing by FoosController#create as HTML
|
1708
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
1709
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1710
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.353644"], ["updated_at", "2014-09-12 05:29:41.353644"]]
|
1711
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1712
|
+
Redirected to http://test.host/foos/1
|
1713
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
|
1714
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1[0m
|
1715
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1716
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1717
|
+
Processing by FoosController#create as HTML
|
1718
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
1719
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1720
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1721
|
+
Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.1ms)
|
1722
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1723
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1724
|
+
Processing by FoosController#create as HTML
|
1725
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
1726
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1727
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1728
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
1729
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1730
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1731
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1732
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.376047"], ["updated_at", "2014-09-12 05:29:41.376047"]]
|
1733
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1734
|
+
Processing by FoosController#update as HTML
|
1735
|
+
Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
|
1736
|
+
[1m[36mFoo Load (0.0ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
1737
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1738
|
+
[1m[36mSQL (1.1ms)[0m [1mUPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1[0m [["bar", "yay"], ["updated_at", "2014-09-12 05:29:41.379402"]]
|
1739
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1740
|
+
Redirected to http://test.host/foos/1
|
1741
|
+
Completed 302 Found in 5ms (ActiveRecord: 1.3ms)
|
1742
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
1743
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1744
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1745
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1746
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.387212"], ["updated_at", "2014-09-12 05:29:41.387212"]]
|
1747
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1748
|
+
Processing by FoosController#update as HTML
|
1749
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
1750
|
+
[1m[36mFoo Load (0.0ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
1751
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1752
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1753
|
+
Redirected to http://test.host/foos/1
|
1754
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
1755
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1756
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1757
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1758
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.395535"], ["updated_at", "2014-09-12 05:29:41.395535"]]
|
1759
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1760
|
+
Processing by FoosController#update as HTML
|
1761
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
1762
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
1763
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1764
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1765
|
+
Redirected to http://test.host/foos/1
|
1766
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
1767
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1768
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1769
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1770
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.407132"], ["updated_at", "2014-09-12 05:29:41.407132"]]
|
1771
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1772
|
+
Processing by FoosController#update as HTML
|
1773
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
1774
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
1775
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1776
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1777
|
+
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.2ms)
|
1778
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1779
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1780
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1781
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.415996"], ["updated_at", "2014-09-12 05:29:41.415996"]]
|
1782
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1783
|
+
Processing by FoosController#update as HTML
|
1784
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
1785
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
1786
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1787
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1788
|
+
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.1ms)
|
1789
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1790
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1791
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1792
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.424548"], ["updated_at", "2014-09-12 05:29:41.424548"]]
|
1793
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1794
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "foos"[0m
|
1795
|
+
Processing by FoosController#destroy as HTML
|
1796
|
+
Parameters: {"id"=>"1"}
|
1797
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
1798
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1799
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
1800
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1801
|
+
Redirected to http://test.host/foos
|
1802
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
1803
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
1804
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1805
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1806
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1807
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.433214"], ["updated_at", "2014-09-12 05:29:41.433214"]]
|
1808
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1809
|
+
Processing by FoosController#destroy as HTML
|
1810
|
+
Parameters: {"id"=>"1"}
|
1811
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
1812
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1813
|
+
[1m[35mSQL (0.5ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
1814
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1815
|
+
Redirected to http://test.host/foos
|
1816
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.7ms)
|
1817
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1818
|
+
[1m[36m (1.4ms)[0m [1mCREATE TABLE "admin_foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "bar" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
1819
|
+
[1m[35m (1.0ms)[0m CREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "bar" varchar(255), "created_at" datetime, "updated_at" datetime)
|
1820
|
+
[1m[36m (2.7ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
1821
|
+
[1m[35m (0.2ms)[0m select sqlite_version(*)
|
1822
|
+
[1m[36m (5.4ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
1823
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
1824
|
+
[1m[36m (3.8ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140912042735')[0m
|
1825
|
+
[1m[35m (1.2ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140912040816')
|
1826
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.2ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
1827
|
+
[1m[35m (0.2ms)[0m begin transaction
|
1828
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1829
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.151338"], ["updated_at", "2014-09-12 05:31:48.151338"]]
|
1830
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1831
|
+
Processing by AdminFoosController#index as HTML
|
1832
|
+
Rendered admin_foos/index.html.erb within layouts/application (0.8ms)
|
1833
|
+
Completed 200 OK in 12ms (Views: 11.0ms | ActiveRecord: 0.0ms)
|
1834
|
+
[1m[35mAdminFoo Load (0.1ms)[0m SELECT "admin_foos".* FROM "admin_foos"
|
1835
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1836
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1837
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1838
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.177287"], ["updated_at", "2014-09-12 05:31:48.177287"]]
|
1839
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1840
|
+
Processing by AdminFoosController#show as HTML
|
1841
|
+
Parameters: {"id"=>"1"}
|
1842
|
+
[1m[35mAdminFoo Load (0.2ms)[0m SELECT "admin_foos".* FROM "admin_foos" WHERE "admin_foos"."id" = ? LIMIT 1 [["id", 1]]
|
1843
|
+
Completed 200 OK in 4ms (Views: 1.9ms | ActiveRecord: 0.2ms)
|
1844
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
1845
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1846
|
+
Processing by AdminFoosController#new as HTML
|
1847
|
+
Filter chain halted as #<Proc:0x007fdf1f995790@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
1848
|
+
Completed 401 Unauthorized in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
1849
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
1850
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1851
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1852
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.191112"], ["updated_at", "2014-09-12 05:31:48.191112"]]
|
1853
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1854
|
+
Processing by AdminFoosController#edit as HTML
|
1855
|
+
Parameters: {"id"=>"1"}
|
1856
|
+
Filter chain halted as #<Proc:0x007fdf1f995790@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
1857
|
+
Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1858
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1859
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1860
|
+
Processing by AdminFoosController#create as HTML
|
1861
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}}
|
1862
|
+
Filter chain halted as #<Proc:0x007fdf1f995790@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
1863
|
+
Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1864
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1865
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1866
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1867
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.200714"], ["updated_at", "2014-09-12 05:31:48.200714"]]
|
1868
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1869
|
+
Processing by AdminFoosController#update as HTML
|
1870
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
1871
|
+
Filter chain halted as #<Proc:0x007fdf1f995790@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
1872
|
+
Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
1873
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
1874
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1875
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
1876
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.207633"], ["updated_at", "2014-09-12 05:31:48.207633"]]
|
1877
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1878
|
+
Processing by AdminFoosController#destroy as HTML
|
1879
|
+
Parameters: {"id"=>"1"}
|
1880
|
+
Filter chain halted as #<Proc:0x007fdf1f995790@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
1881
|
+
Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
1882
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1883
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1884
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1885
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.216616"], ["updated_at", "2014-09-12 05:31:48.216616"]]
|
1886
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1887
|
+
Processing by FoosController#index as HTML
|
1888
|
+
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
1889
|
+
[1m[36mFoo Load (0.2ms)[0m [1mSELECT "foos".* FROM "foos"[0m
|
1890
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1891
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1892
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1893
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.226010"], ["updated_at", "2014-09-12 05:31:48.226010"]]
|
1894
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1895
|
+
Processing by FoosController#show as HTML
|
1896
|
+
Parameters: {"id"=>"1"}
|
1897
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
1898
|
+
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.1ms)
|
1899
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
1900
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1901
|
+
Processing by FoosController#new as HTML
|
1902
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
1903
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1904
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1905
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1906
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.241339"], ["updated_at", "2014-09-12 05:31:48.241339"]]
|
1907
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1908
|
+
Processing by FoosController#edit as HTML
|
1909
|
+
Parameters: {"id"=>"1"}
|
1910
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
1911
|
+
Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.1ms)
|
1912
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1913
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1914
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "foos"
|
1915
|
+
Processing by FoosController#create as HTML
|
1916
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
1917
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1918
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.256480"], ["updated_at", "2014-09-12 05:31:48.256480"]]
|
1919
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1920
|
+
Redirected to http://test.host/foos/1
|
1921
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
|
1922
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
1923
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
1924
|
+
[1m[35m (0.1ms)[0m begin transaction
|
1925
|
+
Processing by FoosController#create as HTML
|
1926
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
1927
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
1928
|
+
[1m[35mSQL (0.8ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.263469"], ["updated_at", "2014-09-12 05:31:48.263469"]]
|
1929
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1930
|
+
Redirected to http://test.host/foos/1
|
1931
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.9ms)
|
1932
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1933
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1934
|
+
Processing by FoosController#create as HTML
|
1935
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
1936
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1937
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.272289"], ["updated_at", "2014-09-12 05:31:48.272289"]]
|
1938
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1939
|
+
Redirected to http://test.host/foos/1
|
1940
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
1941
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1[0m
|
1942
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1943
|
+
[1m[36m (2.3ms)[0m [1mbegin transaction[0m
|
1944
|
+
Processing by FoosController#create as HTML
|
1945
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
1946
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1947
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1948
|
+
Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.2ms)
|
1949
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
1950
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1951
|
+
Processing by FoosController#create as HTML
|
1952
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
1953
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1954
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
1955
|
+
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
1956
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
1957
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
1958
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1959
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.299675"], ["updated_at", "2014-09-12 05:31:48.299675"]]
|
1960
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1961
|
+
Processing by FoosController#update as HTML
|
1962
|
+
Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
|
1963
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
1964
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1965
|
+
[1m[36mSQL (1.2ms)[0m [1mUPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1[0m [["bar", "yay"], ["updated_at", "2014-09-12 05:31:48.302832"]]
|
1966
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1967
|
+
Redirected to http://test.host/foos/1
|
1968
|
+
Completed 302 Found in 4ms (ActiveRecord: 1.4ms)
|
1969
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
1970
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
1971
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1972
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1973
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.309486"], ["updated_at", "2014-09-12 05:31:48.309486"]]
|
1974
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1975
|
+
Processing by FoosController#update as HTML
|
1976
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
1977
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
1978
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1979
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1980
|
+
Redirected to http://test.host/foos/1
|
1981
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
1982
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1983
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1984
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1985
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.316322"], ["updated_at", "2014-09-12 05:31:48.316322"]]
|
1986
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
1987
|
+
Processing by FoosController#update as HTML
|
1988
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
1989
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
1990
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
1991
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
1992
|
+
Redirected to http://test.host/foos/1
|
1993
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
|
1994
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
1995
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
1996
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
1997
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.323142"], ["updated_at", "2014-09-12 05:31:48.323142"]]
|
1998
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
1999
|
+
Processing by FoosController#update as HTML
|
2000
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
2001
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2002
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2003
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2004
|
+
Completed 200 OK in 4ms (Views: 1.4ms | ActiveRecord: 0.2ms)
|
2005
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2006
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2007
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2008
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.332489"], ["updated_at", "2014-09-12 05:31:48.332489"]]
|
2009
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2010
|
+
Processing by FoosController#update as HTML
|
2011
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
2012
|
+
[1m[36mFoo Load (0.0ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2013
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2014
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2015
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
2016
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2017
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2018
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2019
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.340064"], ["updated_at", "2014-09-12 05:31:48.340064"]]
|
2020
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2021
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "foos"[0m
|
2022
|
+
Processing by FoosController#destroy as HTML
|
2023
|
+
Parameters: {"id"=>"1"}
|
2024
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
2025
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2026
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
2027
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2028
|
+
Redirected to http://test.host/foos
|
2029
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.6ms)
|
2030
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
2031
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2032
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2033
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2034
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.348040"], ["updated_at", "2014-09-12 05:31:48.348040"]]
|
2035
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2036
|
+
Processing by FoosController#destroy as HTML
|
2037
|
+
Parameters: {"id"=>"1"}
|
2038
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
2039
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2040
|
+
[1m[35mSQL (0.5ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
2041
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2042
|
+
Redirected to http://test.host/foos
|
2043
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.7ms)
|
2044
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2045
|
+
[1m[36m (1.7ms)[0m [1mCREATE TABLE "admin_foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "bar" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
2046
|
+
[1m[35m (1.1ms)[0m CREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "bar" varchar(255), "created_at" datetime, "updated_at" datetime)
|
2047
|
+
[1m[36m (1.2ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2048
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2049
|
+
[1m[36m (1.2ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2050
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
2051
|
+
[1m[36m (0.9ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140912042735')[0m
|
2052
|
+
[1m[35m (0.9ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140912040816')
|
2053
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2054
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2055
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2056
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.500752"], ["updated_at", "2014-09-12 05:33:23.500752"]]
|
2057
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2058
|
+
Processing by AdminFoosController#index as HTML
|
2059
|
+
Rendered admin_foos/index.html.erb within layouts/application (0.9ms)
|
2060
|
+
Completed 200 OK in 14ms (Views: 13.0ms | ActiveRecord: 0.0ms)
|
2061
|
+
[1m[35mAdminFoo Load (0.2ms)[0m SELECT "admin_foos".* FROM "admin_foos"
|
2062
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2063
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2064
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2065
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.530306"], ["updated_at", "2014-09-12 05:33:23.530306"]]
|
2066
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2067
|
+
Processing by AdminFoosController#show as HTML
|
2068
|
+
Parameters: {"id"=>"1"}
|
2069
|
+
[1m[35mAdminFoo Load (0.2ms)[0m SELECT "admin_foos".* FROM "admin_foos" WHERE "admin_foos"."id" = ? LIMIT 1 [["id", 1]]
|
2070
|
+
Completed 200 OK in 5ms (Views: 2.6ms | ActiveRecord: 0.2ms)
|
2071
|
+
[1m[36m (0.9ms)[0m [1mrollback transaction[0m
|
2072
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2073
|
+
Processing by AdminFoosController#new as HTML
|
2074
|
+
Filter chain halted as #<Proc:0x007f9dbd630490@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2075
|
+
Completed 401 Unauthorized in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
2076
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2077
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2078
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2079
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.547962"], ["updated_at", "2014-09-12 05:33:23.547962"]]
|
2080
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2081
|
+
Processing by AdminFoosController#edit as HTML
|
2082
|
+
Parameters: {"id"=>"1"}
|
2083
|
+
Filter chain halted as #<Proc:0x007f9dbd630490@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2084
|
+
Completed 401 Unauthorized in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2085
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2086
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2087
|
+
Processing by AdminFoosController#create as HTML
|
2088
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}}
|
2089
|
+
Filter chain halted as #<Proc:0x007f9dbd630490@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2090
|
+
Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2091
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2092
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2093
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2094
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.557828"], ["updated_at", "2014-09-12 05:33:23.557828"]]
|
2095
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2096
|
+
Processing by AdminFoosController#update as HTML
|
2097
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
2098
|
+
Filter chain halted as #<Proc:0x007f9dbd630490@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2099
|
+
Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2100
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2101
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2102
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2103
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.562929"], ["updated_at", "2014-09-12 05:33:23.562929"]]
|
2104
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2105
|
+
Processing by AdminFoosController#destroy as HTML
|
2106
|
+
Parameters: {"id"=>"1"}
|
2107
|
+
Filter chain halted as #<Proc:0x007f9dbd630490@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2108
|
+
Completed 401 Unauthorized in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
2109
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2110
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
2111
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2112
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.593480"], ["updated_at", "2014-09-12 05:33:23.593480"]]
|
2113
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2114
|
+
Processing by FoosController#index as HTML
|
2115
|
+
Completed 200 OK in 4ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
2116
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos"[0m
|
2117
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2118
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2119
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2120
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.604489"], ["updated_at", "2014-09-12 05:33:23.604489"]]
|
2121
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2122
|
+
Processing by FoosController#show as HTML
|
2123
|
+
Parameters: {"id"=>"1"}
|
2124
|
+
[1m[36mFoo Load (0.2ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2125
|
+
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.2ms)
|
2126
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2127
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2128
|
+
Processing by FoosController#new as HTML
|
2129
|
+
Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
|
2130
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2131
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2132
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2133
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.620900"], ["updated_at", "2014-09-12 05:33:23.620900"]]
|
2134
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2135
|
+
Processing by FoosController#edit as HTML
|
2136
|
+
Parameters: {"id"=>"1"}
|
2137
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2138
|
+
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.1ms)
|
2139
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2140
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2141
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "foos"
|
2142
|
+
Processing by FoosController#create as HTML
|
2143
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
2144
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2145
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.635461"], ["updated_at", "2014-09-12 05:33:23.635461"]]
|
2146
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2147
|
+
Redirected to http://test.host/foos/1
|
2148
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
|
2149
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
2150
|
+
[1m[36m (0.3ms)[0m [1mrollback transaction[0m
|
2151
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2152
|
+
Processing by FoosController#create as HTML
|
2153
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
2154
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2155
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.642431"], ["updated_at", "2014-09-12 05:33:23.642431"]]
|
2156
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2157
|
+
Redirected to http://test.host/foos/1
|
2158
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
|
2159
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2160
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2161
|
+
Processing by FoosController#create as HTML
|
2162
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
2163
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2164
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.650557"], ["updated_at", "2014-09-12 05:33:23.650557"]]
|
2165
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2166
|
+
Redirected to http://test.host/foos/1
|
2167
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
|
2168
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1[0m
|
2169
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2170
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2171
|
+
Processing by FoosController#create as HTML
|
2172
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
2173
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2174
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2175
|
+
Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.2ms)
|
2176
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2177
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2178
|
+
Processing by FoosController#create as HTML
|
2179
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
2180
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2181
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2182
|
+
Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.1ms)
|
2183
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2184
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2185
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2186
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.679012"], ["updated_at", "2014-09-12 05:33:23.679012"]]
|
2187
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2188
|
+
Processing by FoosController#update as HTML
|
2189
|
+
Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
|
2190
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2191
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2192
|
+
[1m[36mSQL (1.3ms)[0m [1mUPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1[0m [["bar", "yay"], ["updated_at", "2014-09-12 05:33:23.684505"]]
|
2193
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2194
|
+
Redirected to http://test.host/foos/1
|
2195
|
+
Completed 302 Found in 6ms (ActiveRecord: 1.6ms)
|
2196
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2197
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2198
|
+
[1m[36m (0.3ms)[0m [1mbegin transaction[0m
|
2199
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2200
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.692575"], ["updated_at", "2014-09-12 05:33:23.692575"]]
|
2201
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
2202
|
+
Processing by FoosController#update as HTML
|
2203
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
2204
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2205
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2206
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2207
|
+
Redirected to http://test.host/foos/1
|
2208
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
2209
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2210
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2211
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2212
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.701018"], ["updated_at", "2014-09-12 05:33:23.701018"]]
|
2213
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2214
|
+
Processing by FoosController#update as HTML
|
2215
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
2216
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2217
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2218
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2219
|
+
Redirected to http://test.host/foos/1
|
2220
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
2221
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2222
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2223
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2224
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.709045"], ["updated_at", "2014-09-12 05:33:23.709045"]]
|
2225
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2226
|
+
Processing by FoosController#update as HTML
|
2227
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
2228
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2229
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2230
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2231
|
+
Completed 200 OK in 4ms (Views: 1.2ms | ActiveRecord: 0.3ms)
|
2232
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2233
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2234
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2235
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.719830"], ["updated_at", "2014-09-12 05:33:23.719830"]]
|
2236
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2237
|
+
Processing by FoosController#update as HTML
|
2238
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
2239
|
+
[1m[36mFoo Load (0.0ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2240
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2241
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2242
|
+
Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
2243
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2244
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2245
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2246
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.726988"], ["updated_at", "2014-09-12 05:33:23.726988"]]
|
2247
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2248
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "foos"[0m
|
2249
|
+
Processing by FoosController#destroy as HTML
|
2250
|
+
Parameters: {"id"=>"1"}
|
2251
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
2252
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2253
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
2254
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2255
|
+
Redirected to http://test.host/foos
|
2256
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.6ms)
|
2257
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
2258
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2259
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2260
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2261
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.735060"], ["updated_at", "2014-09-12 05:33:23.735060"]]
|
2262
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2263
|
+
Processing by FoosController#destroy as HTML
|
2264
|
+
Parameters: {"id"=>"1"}
|
2265
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
2266
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2267
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
2268
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2269
|
+
Redirected to http://test.host/foos
|
2270
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.7ms)
|
2271
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2272
|
+
[1m[36m (1.6ms)[0m [1mCREATE TABLE "admin_foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "bar" varchar(255), "created_at" datetime, "updated_at" datetime) [0m
|
2273
|
+
[1m[35m (1.3ms)[0m CREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "bar" varchar(255), "created_at" datetime, "updated_at" datetime)
|
2274
|
+
[1m[36m (3.0ms)[0m [1mCREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) [0m
|
2275
|
+
[1m[35m (0.1ms)[0m select sqlite_version(*)
|
2276
|
+
[1m[36m (1.3ms)[0m [1mCREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")[0m
|
2277
|
+
[1m[35m (0.2ms)[0m SELECT version FROM "schema_migrations"
|
2278
|
+
[1m[36m (9.7ms)[0m [1mINSERT INTO "schema_migrations" (version) VALUES ('20140912042735')[0m
|
2279
|
+
[1m[35m (1.4ms)[0m INSERT INTO "schema_migrations" (version) VALUES ('20140912040816')
|
2280
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.1ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2281
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2282
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2283
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.445949"], ["updated_at", "2014-09-12 05:34:21.445949"]]
|
2284
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2285
|
+
Processing by AdminFoosController#index as HTML
|
2286
|
+
Rendered admin_foos/index.html.erb within layouts/application (0.4ms)
|
2287
|
+
Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
|
2288
|
+
[1m[35mAdminFoo Load (0.1ms)[0m SELECT "admin_foos".* FROM "admin_foos"
|
2289
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2290
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2291
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2292
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.470588"], ["updated_at", "2014-09-12 05:34:21.470588"]]
|
2293
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2294
|
+
Processing by AdminFoosController#show as HTML
|
2295
|
+
Parameters: {"id"=>"1"}
|
2296
|
+
[1m[35mAdminFoo Load (0.1ms)[0m SELECT "admin_foos".* FROM "admin_foos" WHERE "admin_foos"."id" = ? LIMIT 1 [["id", 1]]
|
2297
|
+
Completed 200 OK in 4ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
2298
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2299
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2300
|
+
Processing by AdminFoosController#new as HTML
|
2301
|
+
Filter chain halted as #<Proc:0x007f8012fc64f0@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2302
|
+
Completed 401 Unauthorized in 3ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
2303
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2304
|
+
[1m[35m (0.2ms)[0m begin transaction
|
2305
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2306
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.486728"], ["updated_at", "2014-09-12 05:34:21.486728"]]
|
2307
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2308
|
+
Processing by AdminFoosController#edit as HTML
|
2309
|
+
Parameters: {"id"=>"1"}
|
2310
|
+
Filter chain halted as #<Proc:0x007f8012fc64f0@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2311
|
+
Completed 401 Unauthorized in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2312
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2313
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2314
|
+
Processing by AdminFoosController#create as HTML
|
2315
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}}
|
2316
|
+
Filter chain halted as #<Proc:0x007f8012fc64f0@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2317
|
+
Completed 401 Unauthorized in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2318
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2319
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2320
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2321
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.496313"], ["updated_at", "2014-09-12 05:34:21.496313"]]
|
2322
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2323
|
+
Processing by AdminFoosController#update as HTML
|
2324
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
2325
|
+
Filter chain halted as #<Proc:0x007f8012fc64f0@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2326
|
+
Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2327
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2328
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2329
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2330
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.502074"], ["updated_at", "2014-09-12 05:34:21.502074"]]
|
2331
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2332
|
+
Processing by AdminFoosController#destroy as HTML
|
2333
|
+
Parameters: {"id"=>"1"}
|
2334
|
+
Filter chain halted as #<Proc:0x007f8012fc64f0@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2335
|
+
Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2336
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2337
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2338
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2339
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.513061"], ["updated_at", "2014-09-12 05:34:21.513061"]]
|
2340
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2341
|
+
Processing by FoosController#index as HTML
|
2342
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
2343
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos"[0m
|
2344
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2345
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2346
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2347
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.523060"], ["updated_at", "2014-09-12 05:34:21.523060"]]
|
2348
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2349
|
+
Processing by FoosController#show as HTML
|
2350
|
+
Parameters: {"id"=>"1"}
|
2351
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2352
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.1ms)
|
2353
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2354
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2355
|
+
Processing by FoosController#new as HTML
|
2356
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
2357
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2358
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2359
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2360
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.537468"], ["updated_at", "2014-09-12 05:34:21.537468"]]
|
2361
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2362
|
+
Processing by FoosController#edit as HTML
|
2363
|
+
Parameters: {"id"=>"1"}
|
2364
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2365
|
+
Completed 200 OK in 5ms (Views: 3.4ms | ActiveRecord: 0.1ms)
|
2366
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2367
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2368
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "foos"
|
2369
|
+
Processing by FoosController#create as HTML
|
2370
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
2371
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2372
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.559350"], ["updated_at", "2014-09-12 05:34:21.559350"]]
|
2373
|
+
[1m[36m (1.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2374
|
+
Redirected to http://test.host/foos/1
|
2375
|
+
Completed 302 Found in 7ms (ActiveRecord: 2.0ms)
|
2376
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
2377
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2378
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2379
|
+
Processing by FoosController#create as HTML
|
2380
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
2381
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2382
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.569840"], ["updated_at", "2014-09-12 05:34:21.569840"]]
|
2383
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2384
|
+
Redirected to http://test.host/foos/1
|
2385
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
2386
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2387
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2388
|
+
Processing by FoosController#create as HTML
|
2389
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
2390
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2391
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.577230"], ["updated_at", "2014-09-12 05:34:21.577230"]]
|
2392
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2393
|
+
Redirected to http://test.host/foos/1
|
2394
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
|
2395
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1[0m
|
2396
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2397
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2398
|
+
Processing by FoosController#create as HTML
|
2399
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
2400
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2401
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2402
|
+
Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.1ms)
|
2403
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2404
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2405
|
+
Processing by FoosController#create as HTML
|
2406
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
2407
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2408
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2409
|
+
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.1ms)
|
2410
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2411
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2412
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2413
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.607084"], ["updated_at", "2014-09-12 05:34:21.607084"]]
|
2414
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2415
|
+
Processing by FoosController#update as HTML
|
2416
|
+
Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
|
2417
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2418
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2419
|
+
[1m[36mSQL (1.3ms)[0m [1mUPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1[0m [["bar", "yay"], ["updated_at", "2014-09-12 05:34:21.610480"]]
|
2420
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2421
|
+
Redirected to http://test.host/foos/1
|
2422
|
+
Completed 302 Found in 5ms (ActiveRecord: 1.5ms)
|
2423
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2424
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2425
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2426
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2427
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.617582"], ["updated_at", "2014-09-12 05:34:21.617582"]]
|
2428
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2429
|
+
Processing by FoosController#update as HTML
|
2430
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
2431
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2432
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2433
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2434
|
+
Redirected to http://test.host/foos/1
|
2435
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
2436
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2437
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2438
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2439
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.625446"], ["updated_at", "2014-09-12 05:34:21.625446"]]
|
2440
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2441
|
+
Processing by FoosController#update as HTML
|
2442
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
2443
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2444
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2445
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2446
|
+
Redirected to http://test.host/foos/1
|
2447
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
2448
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
2449
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2450
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2451
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.633289"], ["updated_at", "2014-09-12 05:34:21.633289"]]
|
2452
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2453
|
+
Processing by FoosController#update as HTML
|
2454
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
2455
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2456
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2457
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2458
|
+
Completed 200 OK in 4ms (Views: 1.0ms | ActiveRecord: 0.2ms)
|
2459
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2460
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2461
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2462
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.644077"], ["updated_at", "2014-09-12 05:34:21.644077"]]
|
2463
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2464
|
+
Processing by FoosController#update as HTML
|
2465
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
2466
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2467
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2468
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2469
|
+
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
|
2470
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2471
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2472
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2473
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.653122"], ["updated_at", "2014-09-12 05:34:21.653122"]]
|
2474
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2475
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "foos"[0m
|
2476
|
+
Processing by FoosController#destroy as HTML
|
2477
|
+
Parameters: {"id"=>"1"}
|
2478
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
2479
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2480
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
2481
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2482
|
+
Redirected to http://test.host/foos
|
2483
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
2484
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
2485
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2486
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2487
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2488
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.660776"], ["updated_at", "2014-09-12 05:34:21.660776"]]
|
2489
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2490
|
+
Processing by FoosController#destroy as HTML
|
2491
|
+
Parameters: {"id"=>"1"}
|
2492
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
2493
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2494
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
2495
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2496
|
+
Redirected to http://test.host/foos
|
2497
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
2498
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2499
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2500
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2501
|
+
Processing by DogController#one as HTML
|
2502
|
+
Rendered dog/one.html.erb within layouts/application (0.5ms)
|
2503
|
+
Completed 200 OK in 15ms (Views: 14.6ms | ActiveRecord: 0.0ms)
|
2504
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2505
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2506
|
+
Processing by DogController#two as HTML
|
2507
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
2508
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2509
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2510
|
+
Processing by DogController#three as HTML
|
2511
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
2512
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2513
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2514
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2515
|
+
Processing by DogController#one as HTML
|
2516
|
+
Rendered dog/one.html.erb within layouts/application (0.5ms)
|
2517
|
+
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
2518
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2519
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2520
|
+
Processing by DogController#two as HTML
|
2521
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
2522
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2523
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2524
|
+
Processing by DogController#three as HTML
|
2525
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
2526
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2527
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2528
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2529
|
+
Processing by DogController#one as HTML
|
2530
|
+
Rendered dog/one.html.erb within layouts/application (0.4ms)
|
2531
|
+
Completed 200 OK in 9ms (Views: 8.9ms | ActiveRecord: 0.0ms)
|
2532
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2533
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2534
|
+
Processing by DogController#two as HTML
|
2535
|
+
Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
|
2536
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2537
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2538
|
+
Processing by DogController#three as HTML
|
2539
|
+
Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
|
2540
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2541
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2542
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2543
|
+
Processing by DogController#one as HTML
|
2544
|
+
Rendered dog/one.html.erb within layouts/application (0.4ms)
|
2545
|
+
Completed 200 OK in 9ms (Views: 8.4ms | ActiveRecord: 0.0ms)
|
2546
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2547
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2548
|
+
Processing by DogController#two as HTML
|
2549
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
2550
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2551
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2552
|
+
Processing by DogController#three as HTML
|
2553
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
2554
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2555
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2556
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2557
|
+
Processing by DogController#one as HTML
|
2558
|
+
Rendered dog/one.html.erb within layouts/application (0.5ms)
|
2559
|
+
Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
2560
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2561
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2562
|
+
Processing by DogController#two as HTML
|
2563
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
2564
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2565
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2566
|
+
Processing by DogController#three as HTML
|
2567
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
2568
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2569
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2570
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2571
|
+
Processing by CatController#one as HTML
|
2572
|
+
Rendered cat/one.html.erb within layouts/application (0.5ms)
|
2573
|
+
Completed 200 OK in 10ms (Views: 9.3ms | ActiveRecord: 0.0ms)
|
2574
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2575
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2576
|
+
Processing by CatController#two as HTML
|
2577
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
2578
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2579
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2580
|
+
Processing by CatController#three as HTML
|
2581
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
2582
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2583
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2584
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2585
|
+
Processing by CatController#one as HTML
|
2586
|
+
Rendered cat/one.html.erb within layouts/application (0.3ms)
|
2587
|
+
Completed 200 OK in 10ms (Views: 9.5ms | ActiveRecord: 0.0ms)
|
2588
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2589
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2590
|
+
Processing by CatController#two as HTML
|
2591
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
2592
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2593
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2594
|
+
Processing by CatController#three as HTML
|
2595
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
2596
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2597
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2598
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2599
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2600
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2601
|
+
Processing by BunnyController#one as HTML
|
2602
|
+
Rendered bunny/one.html.erb within layouts/application (0.7ms)
|
2603
|
+
Completed 200 OK in 10ms (Views: 10.0ms | ActiveRecord: 0.0ms)
|
2604
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2605
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2606
|
+
Processing by BunnyController#two as HTML
|
2607
|
+
Completed 500 Internal Server Error in 0ms
|
2608
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2609
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2610
|
+
Processing by BunnyController#three as HTML
|
2611
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
2612
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2613
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2614
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2615
|
+
Processing by BunnyController#one as HTML
|
2616
|
+
Completed 500 Internal Server Error in 0ms
|
2617
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2618
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2619
|
+
Processing by BunnyController#two as HTML
|
2620
|
+
Completed 500 Internal Server Error in 0ms
|
2621
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2622
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2623
|
+
Processing by BunnyController#three as HTML
|
2624
|
+
Completed 500 Internal Server Error in 0ms
|
2625
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2626
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2627
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2628
|
+
Processing by BunnyController#one as HTML
|
2629
|
+
Rendered bunny/one.html.erb within layouts/application (0.5ms)
|
2630
|
+
Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
|
2631
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2632
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2633
|
+
Processing by BunnyController#two as HTML
|
2634
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
2635
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2636
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2637
|
+
Processing by BunnyController#three as HTML
|
2638
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
2639
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2640
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2641
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2642
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.9ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2643
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2644
|
+
Processing by BunnyController#one as HTML
|
2645
|
+
Rendered bunny/one.html.erb within layouts/application (0.6ms)
|
2646
|
+
Completed 500 Internal Server Error in 13ms
|
2647
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2648
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2649
|
+
Processing by BunnyController#two as HTML
|
2650
|
+
Completed 500 Internal Server Error in 3ms
|
2651
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2652
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2653
|
+
Processing by BunnyController#three as HTML
|
2654
|
+
Completed 500 Internal Server Error in 3ms
|
2655
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
2656
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2657
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2658
|
+
Processing by BunnyController#one as HTML
|
2659
|
+
Rendered bunny/one.html.erb within layouts/application (0.4ms)
|
2660
|
+
Completed 200 OK in 9ms (Views: 9.1ms | ActiveRecord: 0.0ms)
|
2661
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2662
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2663
|
+
Processing by BunnyController#two as HTML
|
2664
|
+
Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
2665
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2666
|
+
[1m[35m (0.0ms)[0m begin transaction
|
2667
|
+
Processing by BunnyController#three as HTML
|
2668
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
2669
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2670
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2671
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2672
|
+
Processing by BunnyController#one as HTML
|
2673
|
+
Rendered bunny/one.html.erb within layouts/application (0.3ms)
|
2674
|
+
Completed 200 OK in 9ms (Views: 8.7ms | ActiveRecord: 0.0ms)
|
2675
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2676
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2677
|
+
Processing by BunnyController#two as HTML
|
2678
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
2679
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2680
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2681
|
+
Processing by BunnyController#three as HTML
|
2682
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
2683
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2684
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2685
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2686
|
+
Processing by BunnyController#one as HTML
|
2687
|
+
Rendered bunny/one.html.erb within layouts/application (0.5ms)
|
2688
|
+
Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
|
2689
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2690
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2691
|
+
Processing by BunnyController#two as HTML
|
2692
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
2693
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2694
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2695
|
+
Processing by BunnyController#three as HTML
|
2696
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
2697
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2698
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2699
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2700
|
+
Processing by BunnyController#one as HTML
|
2701
|
+
Rendered bunny/one.html.erb within layouts/application (0.6ms)
|
2702
|
+
Completed 200 OK in 35ms (Views: 34.4ms | ActiveRecord: 0.0ms)
|
2703
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2704
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2705
|
+
Processing by BunnyController#two as HTML
|
2706
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
2707
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2708
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2709
|
+
Processing by BunnyController#three as HTML
|
2710
|
+
Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
|
2711
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2712
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2713
|
+
[1m[35m (0.2ms)[0m begin transaction
|
2714
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2715
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.361901"], ["updated_at", "2014-09-12 19:47:15.361901"]]
|
2716
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2717
|
+
Processing by AdminFoosController#index as HTML
|
2718
|
+
Rendered admin_foos/index.html.erb within layouts/application (0.6ms)
|
2719
|
+
Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
2720
|
+
[1m[35mAdminFoo Load (0.2ms)[0m SELECT "admin_foos".* FROM "admin_foos"
|
2721
|
+
[1m[36m (1.0ms)[0m [1mrollback transaction[0m
|
2722
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2723
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2724
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.390119"], ["updated_at", "2014-09-12 19:47:15.390119"]]
|
2725
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2726
|
+
Processing by AdminFoosController#show as HTML
|
2727
|
+
Parameters: {"id"=>"1"}
|
2728
|
+
[1m[35mAdminFoo Load (0.2ms)[0m SELECT "admin_foos".* FROM "admin_foos" WHERE "admin_foos"."id" = ? LIMIT 1 [["id", 1]]
|
2729
|
+
Completed 200 OK in 5ms (Views: 2.6ms | ActiveRecord: 0.2ms)
|
2730
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2731
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2732
|
+
Processing by AdminFoosController#new as HTML
|
2733
|
+
Filter chain halted as #<Proc:0x007fb573bb9f38@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2734
|
+
Completed 401 Unauthorized in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
2735
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2736
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2737
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2738
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.405933"], ["updated_at", "2014-09-12 19:47:15.405933"]]
|
2739
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2740
|
+
Processing by AdminFoosController#edit as HTML
|
2741
|
+
Parameters: {"id"=>"1"}
|
2742
|
+
Filter chain halted as #<Proc:0x007fb573bb9f38@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2743
|
+
Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2744
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2745
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2746
|
+
Processing by AdminFoosController#create as HTML
|
2747
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}}
|
2748
|
+
Filter chain halted as #<Proc:0x007fb573bb9f38@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2749
|
+
Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2750
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
2751
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2752
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2753
|
+
[1m[36mSQL (0.2ms)[0m [1mINSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.413416"], ["updated_at", "2014-09-12 19:47:15.413416"]]
|
2754
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
2755
|
+
Processing by AdminFoosController#update as HTML
|
2756
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
2757
|
+
Filter chain halted as #<Proc:0x007fb573bb9f38@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2758
|
+
Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
2759
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
2760
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2761
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2762
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.418872"], ["updated_at", "2014-09-12 19:47:15.418872"]]
|
2763
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2764
|
+
Processing by AdminFoosController#destroy as HTML
|
2765
|
+
Parameters: {"id"=>"1"}
|
2766
|
+
Filter chain halted as #<Proc:0x007fb573bb9f38@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2767
|
+
Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
2768
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2769
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2770
|
+
Processing by BunnyController#one as HTML
|
2771
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
2772
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2773
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2774
|
+
Processing by BunnyController#two as HTML
|
2775
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
2776
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2777
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2778
|
+
Processing by BunnyController#three as HTML
|
2779
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
2780
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2781
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2782
|
+
Processing by CatController#one as HTML
|
2783
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
2784
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2785
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2786
|
+
Processing by CatController#two as HTML
|
2787
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
2788
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2789
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2790
|
+
Processing by CatController#three as HTML
|
2791
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
2792
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2793
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2794
|
+
Processing by DogController#one as HTML
|
2795
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
2796
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2797
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2798
|
+
Processing by DogController#two as HTML
|
2799
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
2800
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2801
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
2802
|
+
Processing by DogController#three as HTML
|
2803
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
2804
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2805
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2806
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2807
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.492246"], ["updated_at", "2014-09-12 19:47:15.492246"]]
|
2808
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2809
|
+
Processing by FoosController#index as HTML
|
2810
|
+
Completed 200 OK in 5ms (Views: 3.9ms | ActiveRecord: 0.0ms)
|
2811
|
+
[1m[36mFoo Load (0.2ms)[0m [1mSELECT "foos".* FROM "foos"[0m
|
2812
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
2813
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2814
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2815
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.507417"], ["updated_at", "2014-09-12 19:47:15.507417"]]
|
2816
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2817
|
+
Processing by FoosController#show as HTML
|
2818
|
+
Parameters: {"id"=>"1"}
|
2819
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2820
|
+
Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
|
2821
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
2822
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2823
|
+
Processing by FoosController#new as HTML
|
2824
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
2825
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2826
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2827
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2828
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.522065"], ["updated_at", "2014-09-12 19:47:15.522065"]]
|
2829
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2830
|
+
Processing by FoosController#edit as HTML
|
2831
|
+
Parameters: {"id"=>"1"}
|
2832
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2833
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
|
2834
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2835
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2836
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "foos"
|
2837
|
+
Processing by FoosController#create as HTML
|
2838
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
2839
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2840
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.539209"], ["updated_at", "2014-09-12 19:47:15.539209"]]
|
2841
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2842
|
+
Redirected to http://test.host/foos/1
|
2843
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.8ms)
|
2844
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
2845
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
2846
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2847
|
+
Processing by FoosController#create as HTML
|
2848
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
2849
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2850
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.547372"], ["updated_at", "2014-09-12 19:47:15.547372"]]
|
2851
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2852
|
+
Redirected to http://test.host/foos/1
|
2853
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
2854
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2855
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2856
|
+
Processing by FoosController#create as HTML
|
2857
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
2858
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2859
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.555925"], ["updated_at", "2014-09-12 19:47:15.555925"]]
|
2860
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2861
|
+
Redirected to http://test.host/foos/1
|
2862
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
|
2863
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1[0m
|
2864
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2865
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2866
|
+
Processing by FoosController#create as HTML
|
2867
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
2868
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2869
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2870
|
+
Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.1ms)
|
2871
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2872
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2873
|
+
Processing by FoosController#create as HTML
|
2874
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
2875
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2876
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2877
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
2878
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
2879
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2880
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2881
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.580944"], ["updated_at", "2014-09-12 19:47:15.580944"]]
|
2882
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2883
|
+
Processing by FoosController#update as HTML
|
2884
|
+
Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
|
2885
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2886
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2887
|
+
[1m[36mSQL (2.0ms)[0m [1mUPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1[0m [["bar", "yay"], ["updated_at", "2014-09-12 19:47:15.585951"]]
|
2888
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2889
|
+
Redirected to http://test.host/foos/1
|
2890
|
+
Completed 302 Found in 6ms (ActiveRecord: 2.2ms)
|
2891
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2892
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2893
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2894
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2895
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.594375"], ["updated_at", "2014-09-12 19:47:15.594375"]]
|
2896
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2897
|
+
Processing by FoosController#update as HTML
|
2898
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
2899
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2900
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
2901
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2902
|
+
Redirected to http://test.host/foos/1
|
2903
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
2904
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
2905
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2906
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2907
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.601189"], ["updated_at", "2014-09-12 19:47:15.601189"]]
|
2908
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2909
|
+
Processing by FoosController#update as HTML
|
2910
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
2911
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2912
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2913
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2914
|
+
Redirected to http://test.host/foos/1
|
2915
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
|
2916
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2917
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2918
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2919
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.611433"], ["updated_at", "2014-09-12 19:47:15.611433"]]
|
2920
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2921
|
+
Processing by FoosController#update as HTML
|
2922
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
2923
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2924
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2925
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2926
|
+
Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.2ms)
|
2927
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2928
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2929
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2930
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.620471"], ["updated_at", "2014-09-12 19:47:15.620471"]]
|
2931
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2932
|
+
Processing by FoosController#update as HTML
|
2933
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
2934
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
2935
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2936
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
2937
|
+
Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.2ms)
|
2938
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2939
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
2940
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
2941
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.629426"], ["updated_at", "2014-09-12 19:47:15.629426"]]
|
2942
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
2943
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "foos"[0m
|
2944
|
+
Processing by FoosController#destroy as HTML
|
2945
|
+
Parameters: {"id"=>"1"}
|
2946
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
2947
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2948
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
2949
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2950
|
+
Redirected to http://test.host/foos
|
2951
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.6ms)
|
2952
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
2953
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2954
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2955
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2956
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.638086"], ["updated_at", "2014-09-12 19:47:15.638086"]]
|
2957
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2958
|
+
Processing by FoosController#destroy as HTML
|
2959
|
+
Parameters: {"id"=>"1"}
|
2960
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
2961
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2962
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
2963
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2964
|
+
Redirected to http://test.host/foos
|
2965
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
|
2966
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
2967
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2968
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
2969
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2970
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2971
|
+
[1m[35mSQL (1.0ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.100414"], ["updated_at", "2014-09-12 19:51:56.100414"]]
|
2972
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2973
|
+
Processing by AdminFoosController#index as HTML
|
2974
|
+
Rendered admin_foos/index.html.erb within layouts/application (0.8ms)
|
2975
|
+
Completed 200 OK in 12ms (Views: 11.3ms | ActiveRecord: 0.0ms)
|
2976
|
+
[1m[35mAdminFoo Load (0.1ms)[0m SELECT "admin_foos".* FROM "admin_foos"
|
2977
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2978
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2979
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
2980
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.127641"], ["updated_at", "2014-09-12 19:51:56.127641"]]
|
2981
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2982
|
+
Processing by AdminFoosController#show as HTML
|
2983
|
+
Parameters: {"id"=>"1"}
|
2984
|
+
[1m[35mAdminFoo Load (0.2ms)[0m SELECT "admin_foos".* FROM "admin_foos" WHERE "admin_foos"."id" = ? LIMIT 1 [["id", 1]]
|
2985
|
+
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms)
|
2986
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
2987
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2988
|
+
Processing by AdminFoosController#new as HTML
|
2989
|
+
Filter chain halted as #<Proc:0x007fd332f11708@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2990
|
+
Completed 401 Unauthorized in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
2991
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
2992
|
+
[1m[35m (0.1ms)[0m begin transaction
|
2993
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
2994
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.143786"], ["updated_at", "2014-09-12 19:51:56.143786"]]
|
2995
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
2996
|
+
Processing by AdminFoosController#edit as HTML
|
2997
|
+
Parameters: {"id"=>"1"}
|
2998
|
+
Filter chain halted as #<Proc:0x007fd332f11708@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
2999
|
+
Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
3000
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3001
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3002
|
+
Processing by AdminFoosController#create as HTML
|
3003
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}}
|
3004
|
+
Filter chain halted as #<Proc:0x007fd332f11708@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3005
|
+
Completed 401 Unauthorized in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
3006
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3007
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3008
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3009
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.156280"], ["updated_at", "2014-09-12 19:51:56.156280"]]
|
3010
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3011
|
+
Processing by AdminFoosController#update as HTML
|
3012
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
3013
|
+
Filter chain halted as #<Proc:0x007fd332f11708@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3014
|
+
Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
3015
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
3016
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3017
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3018
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.163674"], ["updated_at", "2014-09-12 19:51:56.163674"]]
|
3019
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3020
|
+
Processing by AdminFoosController#destroy as HTML
|
3021
|
+
Parameters: {"id"=>"1"}
|
3022
|
+
Filter chain halted as #<Proc:0x007fd332f11708@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3023
|
+
Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3024
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3025
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3026
|
+
Processing by BunnyController#one as HTML
|
3027
|
+
Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
3028
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3029
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3030
|
+
Processing by BunnyController#two as HTML
|
3031
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
3032
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3033
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3034
|
+
Processing by BunnyController#three as HTML
|
3035
|
+
Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
|
3036
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3037
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3038
|
+
Processing by CatController#one as HTML
|
3039
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
3040
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3041
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3042
|
+
Processing by CatController#two as HTML
|
3043
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
3044
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3045
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3046
|
+
Processing by CatController#three as HTML
|
3047
|
+
Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
3048
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3049
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3050
|
+
Processing by DogController#one as HTML
|
3051
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
3052
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3053
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3054
|
+
Processing by DogController#two as HTML
|
3055
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
3056
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3057
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3058
|
+
Processing by DogController#three as HTML
|
3059
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
3060
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3061
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3062
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3063
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.229937"], ["updated_at", "2014-09-12 19:51:56.229937"]]
|
3064
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3065
|
+
Processing by FoosController#index as HTML
|
3066
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
3067
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos"[0m
|
3068
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3069
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3070
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3071
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.262916"], ["updated_at", "2014-09-12 19:51:56.262916"]]
|
3072
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3073
|
+
Processing by FoosController#show as HTML
|
3074
|
+
Parameters: {"id"=>"1"}
|
3075
|
+
[1m[36mFoo Load (0.2ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3076
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.2ms)
|
3077
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3078
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3079
|
+
Processing by FoosController#new as HTML
|
3080
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
3081
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3082
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3083
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3084
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.277243"], ["updated_at", "2014-09-12 19:51:56.277243"]]
|
3085
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3086
|
+
Processing by FoosController#edit as HTML
|
3087
|
+
Parameters: {"id"=>"1"}
|
3088
|
+
[1m[36mFoo Load (0.0ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3089
|
+
Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
3090
|
+
[1m[35m (0.8ms)[0m rollback transaction
|
3091
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3092
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "foos"
|
3093
|
+
Processing by FoosController#create as HTML
|
3094
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
3095
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3096
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.291779"], ["updated_at", "2014-09-12 19:51:56.291779"]]
|
3097
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3098
|
+
Redirected to http://test.host/foos/1
|
3099
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
|
3100
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
3101
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
3102
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3103
|
+
Processing by FoosController#create as HTML
|
3104
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
3105
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3106
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.298703"], ["updated_at", "2014-09-12 19:51:56.298703"]]
|
3107
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3108
|
+
Redirected to http://test.host/foos/1
|
3109
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
3110
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3111
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3112
|
+
Processing by FoosController#create as HTML
|
3113
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
3114
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3115
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.306617"], ["updated_at", "2014-09-12 19:51:56.306617"]]
|
3116
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3117
|
+
Redirected to http://test.host/foos/1
|
3118
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.8ms)
|
3119
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1[0m
|
3120
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3121
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3122
|
+
Processing by FoosController#create as HTML
|
3123
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
3124
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3125
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
3126
|
+
Completed 200 OK in 10ms (Views: 1.1ms | ActiveRecord: 0.1ms)
|
3127
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3128
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3129
|
+
Processing by FoosController#create as HTML
|
3130
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
3131
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3132
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
3133
|
+
Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.1ms)
|
3134
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3135
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3136
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3137
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.332081"], ["updated_at", "2014-09-12 19:51:56.332081"]]
|
3138
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3139
|
+
Processing by FoosController#update as HTML
|
3140
|
+
Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
|
3141
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3142
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3143
|
+
[1m[36mSQL (1.2ms)[0m [1mUPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1[0m [["bar", "yay"], ["updated_at", "2014-09-12 19:51:56.336399"]]
|
3144
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3145
|
+
Redirected to http://test.host/foos/1
|
3146
|
+
Completed 302 Found in 5ms (ActiveRecord: 1.4ms)
|
3147
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3148
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3149
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3150
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3151
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.342928"], ["updated_at", "2014-09-12 19:51:56.342928"]]
|
3152
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3153
|
+
Processing by FoosController#update as HTML
|
3154
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
3155
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3156
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3157
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3158
|
+
Redirected to http://test.host/foos/1
|
3159
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
|
3160
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3161
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3162
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3163
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.348890"], ["updated_at", "2014-09-12 19:51:56.348890"]]
|
3164
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3165
|
+
Processing by FoosController#update as HTML
|
3166
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
3167
|
+
[1m[36mFoo Load (0.0ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3168
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3169
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3170
|
+
Redirected to http://test.host/foos/1
|
3171
|
+
Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
|
3172
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
3173
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3174
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3175
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.354656"], ["updated_at", "2014-09-12 19:51:56.354656"]]
|
3176
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3177
|
+
Processing by FoosController#update as HTML
|
3178
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
3179
|
+
[1m[36mFoo Load (0.0ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3180
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3181
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
3182
|
+
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
3183
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
3184
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3185
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3186
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.361086"], ["updated_at", "2014-09-12 19:51:56.361086"]]
|
3187
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3188
|
+
Processing by FoosController#update as HTML
|
3189
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
3190
|
+
[1m[36mFoo Load (0.0ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3191
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3192
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
3193
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
3194
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
3195
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3196
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3197
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.367852"], ["updated_at", "2014-09-12 19:51:56.367852"]]
|
3198
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3199
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "foos"[0m
|
3200
|
+
Processing by FoosController#destroy as HTML
|
3201
|
+
Parameters: {"id"=>"1"}
|
3202
|
+
[1m[35mFoo Load (0.0ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
3203
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3204
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
3205
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3206
|
+
Redirected to http://test.host/foos
|
3207
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
3208
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
3209
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
3210
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3211
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3212
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.374559"], ["updated_at", "2014-09-12 19:51:56.374559"]]
|
3213
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3214
|
+
Processing by FoosController#destroy as HTML
|
3215
|
+
Parameters: {"id"=>"1"}
|
3216
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
3217
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3218
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
3219
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3220
|
+
Redirected to http://test.host/foos
|
3221
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
|
3222
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3223
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.4ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3224
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3225
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3226
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.061299"], ["updated_at", "2014-09-12 19:58:16.061299"]]
|
3227
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3228
|
+
Processing by AdminFoosController#index as HTML
|
3229
|
+
Rendered admin_foos/index.html.erb within layouts/application (0.4ms)
|
3230
|
+
Completed 200 OK in 10ms (Views: 9.9ms | ActiveRecord: 0.0ms)
|
3231
|
+
[1m[35mAdminFoo Load (0.1ms)[0m SELECT "admin_foos".* FROM "admin_foos"
|
3232
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
3233
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3234
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3235
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.085753"], ["updated_at", "2014-09-12 19:58:16.085753"]]
|
3236
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3237
|
+
Processing by AdminFoosController#show as HTML
|
3238
|
+
Parameters: {"id"=>"1"}
|
3239
|
+
[1m[35mAdminFoo Load (0.2ms)[0m SELECT "admin_foos".* FROM "admin_foos" WHERE "admin_foos"."id" = ? LIMIT 1 [["id", 1]]
|
3240
|
+
Completed 200 OK in 5ms (Views: 2.3ms | ActiveRecord: 0.2ms)
|
3241
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
3242
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3243
|
+
Processing by AdminFoosController#new as HTML
|
3244
|
+
Filter chain halted as #<Proc:0x007f855cd18920@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3245
|
+
Completed 401 Unauthorized in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
3246
|
+
[1m[36m (0.2ms)[0m [1mrollback transaction[0m
|
3247
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3248
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3249
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.103736"], ["updated_at", "2014-09-12 19:58:16.103736"]]
|
3250
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3251
|
+
Processing by AdminFoosController#edit as HTML
|
3252
|
+
Parameters: {"id"=>"1"}
|
3253
|
+
Filter chain halted as #<Proc:0x007f855cd18920@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3254
|
+
Completed 401 Unauthorized in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
3255
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3256
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3257
|
+
Processing by AdminFoosController#create as HTML
|
3258
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}}
|
3259
|
+
Filter chain halted as #<Proc:0x007f855cd18920@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3260
|
+
Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
3261
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3262
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3263
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3264
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.115636"], ["updated_at", "2014-09-12 19:58:16.115636"]]
|
3265
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3266
|
+
Processing by AdminFoosController#update as HTML
|
3267
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
3268
|
+
Filter chain halted as #<Proc:0x007f855cd18920@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3269
|
+
Completed 401 Unauthorized in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
3270
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
3271
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3272
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3273
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.125243"], ["updated_at", "2014-09-12 19:58:16.125243"]]
|
3274
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3275
|
+
Processing by AdminFoosController#destroy as HTML
|
3276
|
+
Parameters: {"id"=>"1"}
|
3277
|
+
Filter chain halted as #<Proc:0x007f855cd18920@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3278
|
+
Completed 401 Unauthorized in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
3279
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3280
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3281
|
+
Processing by BunnyController#one as HTML
|
3282
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
3283
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3284
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3285
|
+
Processing by BunnyController#two as HTML
|
3286
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
3287
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3288
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3289
|
+
Processing by BunnyController#three as HTML
|
3290
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
3291
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3292
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3293
|
+
Processing by CatController#one as HTML
|
3294
|
+
Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
3295
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3296
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3297
|
+
Processing by CatController#two as HTML
|
3298
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
3299
|
+
[1m[35m (0.2ms)[0m rollback transaction
|
3300
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3301
|
+
Processing by CatController#three as HTML
|
3302
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
3303
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3304
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3305
|
+
Processing by DogController#one as HTML
|
3306
|
+
Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
3307
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3308
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3309
|
+
Processing by DogController#two as HTML
|
3310
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
3311
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3312
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3313
|
+
Processing by DogController#three as HTML
|
3314
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
3315
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3316
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3317
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3318
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.195051"], ["updated_at", "2014-09-12 19:58:16.195051"]]
|
3319
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3320
|
+
Processing by FoosController#index as HTML
|
3321
|
+
Completed 200 OK in 9ms (Views: 7.9ms | ActiveRecord: 0.0ms)
|
3322
|
+
[1m[36mFoo Load (0.2ms)[0m [1mSELECT "foos".* FROM "foos"[0m
|
3323
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
3324
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3325
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3326
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.214955"], ["updated_at", "2014-09-12 19:58:16.214955"]]
|
3327
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3328
|
+
Processing by FoosController#show as HTML
|
3329
|
+
Parameters: {"id"=>"1"}
|
3330
|
+
[1m[36mFoo Load (0.2ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3331
|
+
Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.2ms)
|
3332
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3333
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3334
|
+
Processing by FoosController#new as HTML
|
3335
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
3336
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3337
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3338
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3339
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.231737"], ["updated_at", "2014-09-12 19:58:16.231737"]]
|
3340
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3341
|
+
Processing by FoosController#edit as HTML
|
3342
|
+
Parameters: {"id"=>"1"}
|
3343
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3344
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
|
3345
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3346
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3347
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "foos"
|
3348
|
+
Processing by FoosController#create as HTML
|
3349
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
3350
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3351
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.247568"], ["updated_at", "2014-09-12 19:58:16.247568"]]
|
3352
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3353
|
+
Redirected to http://test.host/foos/1
|
3354
|
+
Completed 302 Found in 5ms (ActiveRecord: 0.7ms)
|
3355
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
3356
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
3357
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3358
|
+
Processing by FoosController#create as HTML
|
3359
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
3360
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3361
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.258974"], ["updated_at", "2014-09-12 19:58:16.258974"]]
|
3362
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3363
|
+
Redirected to http://test.host/foos/1
|
3364
|
+
Completed 302 Found in 10ms (ActiveRecord: 0.7ms)
|
3365
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
3366
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3367
|
+
Processing by FoosController#create as HTML
|
3368
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
3369
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3370
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.278563"], ["updated_at", "2014-09-12 19:58:16.278563"]]
|
3371
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3372
|
+
Redirected to http://test.host/foos/1
|
3373
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.6ms)
|
3374
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1[0m
|
3375
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3376
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3377
|
+
Processing by FoosController#create as HTML
|
3378
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
3379
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3380
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
3381
|
+
Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.2ms)
|
3382
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3383
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3384
|
+
Processing by FoosController#create as HTML
|
3385
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
3386
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3387
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
3388
|
+
Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
3389
|
+
[1m[35m (0.0ms)[0m rollback transaction
|
3390
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3391
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3392
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.304565"], ["updated_at", "2014-09-12 19:58:16.304565"]]
|
3393
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3394
|
+
Processing by FoosController#update as HTML
|
3395
|
+
Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
|
3396
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3397
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3398
|
+
[1m[36mSQL (1.5ms)[0m [1mUPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1[0m [["bar", "yay"], ["updated_at", "2014-09-12 19:58:16.307876"]]
|
3399
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3400
|
+
Redirected to http://test.host/foos/1
|
3401
|
+
Completed 302 Found in 5ms (ActiveRecord: 1.7ms)
|
3402
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3403
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3404
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3405
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3406
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.316131"], ["updated_at", "2014-09-12 19:58:16.316131"]]
|
3407
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3408
|
+
Processing by FoosController#update as HTML
|
3409
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
3410
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3411
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3412
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3413
|
+
Redirected to http://test.host/foos/1
|
3414
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
3415
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3416
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3417
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3418
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.323336"], ["updated_at", "2014-09-12 19:58:16.323336"]]
|
3419
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3420
|
+
Processing by FoosController#update as HTML
|
3421
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
3422
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3423
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3424
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3425
|
+
Redirected to http://test.host/foos/1
|
3426
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
3427
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3428
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3429
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3430
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.331016"], ["updated_at", "2014-09-12 19:58:16.331016"]]
|
3431
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3432
|
+
Processing by FoosController#update as HTML
|
3433
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
3434
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3435
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3436
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
3437
|
+
Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 0.3ms)
|
3438
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
3439
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3440
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3441
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.341164"], ["updated_at", "2014-09-12 19:58:16.341164"]]
|
3442
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3443
|
+
Processing by FoosController#update as HTML
|
3444
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
3445
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3446
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3447
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
3448
|
+
Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.2ms)
|
3449
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3450
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3451
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3452
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.350649"], ["updated_at", "2014-09-12 19:58:16.350649"]]
|
3453
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3454
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "foos"[0m
|
3455
|
+
Processing by FoosController#destroy as HTML
|
3456
|
+
Parameters: {"id"=>"1"}
|
3457
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
3458
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3459
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
3460
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3461
|
+
Redirected to http://test.host/foos
|
3462
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
3463
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
3464
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
3465
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3466
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3467
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.359496"], ["updated_at", "2014-09-12 19:58:16.359496"]]
|
3468
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3469
|
+
Processing by FoosController#destroy as HTML
|
3470
|
+
Parameters: {"id"=>"1"}
|
3471
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
3472
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3473
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
3474
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3475
|
+
Redirected to http://test.host/foos
|
3476
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.6ms)
|
3477
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3478
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3479
|
+
Processing by SquirrelController#one as HTML
|
3480
|
+
Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
|
3481
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3482
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3483
|
+
Processing by SquirrelController#two as HTML
|
3484
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
3485
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3486
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3487
|
+
Processing by SquirrelController#three as HTML
|
3488
|
+
Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
3489
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3490
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3491
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3492
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3493
|
+
[1m[35mSQL (1.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.699888"], ["updated_at", "2014-09-12 19:58:50.699888"]]
|
3494
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3495
|
+
Processing by AdminFoosController#index as HTML
|
3496
|
+
Rendered admin_foos/index.html.erb within layouts/application (0.4ms)
|
3497
|
+
Completed 200 OK in 11ms (Views: 10.1ms | ActiveRecord: 0.0ms)
|
3498
|
+
[1m[35mAdminFoo Load (0.1ms)[0m SELECT "admin_foos".* FROM "admin_foos"
|
3499
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
3500
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3501
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3502
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.724085"], ["updated_at", "2014-09-12 19:58:50.724085"]]
|
3503
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3504
|
+
Processing by AdminFoosController#show as HTML
|
3505
|
+
Parameters: {"id"=>"1"}
|
3506
|
+
[1m[35mAdminFoo Load (0.2ms)[0m SELECT "admin_foos".* FROM "admin_foos" WHERE "admin_foos"."id" = ? LIMIT 1 [["id", 1]]
|
3507
|
+
Completed 200 OK in 5ms (Views: 2.3ms | ActiveRecord: 0.2ms)
|
3508
|
+
[1m[36m (0.7ms)[0m [1mrollback transaction[0m
|
3509
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3510
|
+
Processing by AdminFoosController#new as HTML
|
3511
|
+
Filter chain halted as #<Proc:0x007f960accfcc0@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3512
|
+
Completed 401 Unauthorized in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
3513
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
3514
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3515
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3516
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.740714"], ["updated_at", "2014-09-12 19:58:50.740714"]]
|
3517
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3518
|
+
Processing by AdminFoosController#edit as HTML
|
3519
|
+
Parameters: {"id"=>"1"}
|
3520
|
+
Filter chain halted as #<Proc:0x007f960accfcc0@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3521
|
+
Completed 401 Unauthorized in 1ms (Views: 0.5ms | ActiveRecord: 0.0ms)
|
3522
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3523
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3524
|
+
Processing by AdminFoosController#create as HTML
|
3525
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}}
|
3526
|
+
Filter chain halted as #<Proc:0x007f960accfcc0@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3527
|
+
Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
3528
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3529
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3530
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3531
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.751459"], ["updated_at", "2014-09-12 19:58:50.751459"]]
|
3532
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3533
|
+
Processing by AdminFoosController#update as HTML
|
3534
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
3535
|
+
Filter chain halted as #<Proc:0x007f960accfcc0@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3536
|
+
Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
3537
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
3538
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3539
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3540
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.757159"], ["updated_at", "2014-09-12 19:58:50.757159"]]
|
3541
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3542
|
+
Processing by AdminFoosController#destroy as HTML
|
3543
|
+
Parameters: {"id"=>"1"}
|
3544
|
+
Filter chain halted as #<Proc:0x007f960accfcc0@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3545
|
+
Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
3546
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3547
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3548
|
+
Processing by BunnyController#one as HTML
|
3549
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
3550
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3551
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3552
|
+
Processing by BunnyController#two as HTML
|
3553
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
3554
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3555
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3556
|
+
Processing by BunnyController#three as HTML
|
3557
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
3558
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3559
|
+
[1m[36m (0.2ms)[0m [1mbegin transaction[0m
|
3560
|
+
Processing by CatController#one as HTML
|
3561
|
+
Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
|
3562
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3563
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3564
|
+
Processing by CatController#two as HTML
|
3565
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
3566
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3567
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3568
|
+
Processing by CatController#three as HTML
|
3569
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
3570
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3571
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3572
|
+
Processing by DogController#one as HTML
|
3573
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
3574
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3575
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3576
|
+
Processing by DogController#two as HTML
|
3577
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
3578
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3579
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3580
|
+
Processing by DogController#three as HTML
|
3581
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
3582
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3583
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3584
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3585
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.829488"], ["updated_at", "2014-09-12 19:58:50.829488"]]
|
3586
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3587
|
+
Processing by FoosController#index as HTML
|
3588
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
3589
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos"[0m
|
3590
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3591
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3592
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3593
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.840479"], ["updated_at", "2014-09-12 19:58:50.840479"]]
|
3594
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
3595
|
+
Processing by FoosController#show as HTML
|
3596
|
+
Parameters: {"id"=>"1"}
|
3597
|
+
[1m[36mFoo Load (0.2ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3598
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.2ms)
|
3599
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3600
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3601
|
+
Processing by FoosController#new as HTML
|
3602
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
3603
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3604
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3605
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3606
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.859640"], ["updated_at", "2014-09-12 19:58:50.859640"]]
|
3607
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3608
|
+
Processing by FoosController#edit as HTML
|
3609
|
+
Parameters: {"id"=>"1"}
|
3610
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3611
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
|
3612
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3613
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3614
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "foos"
|
3615
|
+
Processing by FoosController#create as HTML
|
3616
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
3617
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3618
|
+
[1m[35mSQL (0.6ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.873844"], ["updated_at", "2014-09-12 19:58:50.873844"]]
|
3619
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3620
|
+
Redirected to http://test.host/foos/1
|
3621
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.7ms)
|
3622
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
3623
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
3624
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3625
|
+
Processing by FoosController#create as HTML
|
3626
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
3627
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3628
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.883559"], ["updated_at", "2014-09-12 19:58:50.883559"]]
|
3629
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3630
|
+
Redirected to http://test.host/foos/1
|
3631
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.6ms)
|
3632
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3633
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3634
|
+
Processing by FoosController#create as HTML
|
3635
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
3636
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3637
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.892354"], ["updated_at", "2014-09-12 19:58:50.892354"]]
|
3638
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3639
|
+
Redirected to http://test.host/foos/1
|
3640
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
|
3641
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1[0m
|
3642
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3643
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3644
|
+
Processing by FoosController#create as HTML
|
3645
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
3646
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3647
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
3648
|
+
Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.1ms)
|
3649
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3650
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3651
|
+
Processing by FoosController#create as HTML
|
3652
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
3653
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3654
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
3655
|
+
Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
|
3656
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3657
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3658
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3659
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.915042"], ["updated_at", "2014-09-12 19:58:50.915042"]]
|
3660
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3661
|
+
Processing by FoosController#update as HTML
|
3662
|
+
Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
|
3663
|
+
[1m[36mFoo Load (0.0ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3664
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3665
|
+
[1m[36mSQL (1.2ms)[0m [1mUPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1[0m [["bar", "yay"], ["updated_at", "2014-09-12 19:58:50.918628"]]
|
3666
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3667
|
+
Redirected to http://test.host/foos/1
|
3668
|
+
Completed 302 Found in 4ms (ActiveRecord: 1.4ms)
|
3669
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3670
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3671
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3672
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3673
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.925001"], ["updated_at", "2014-09-12 19:58:50.925001"]]
|
3674
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3675
|
+
Processing by FoosController#update as HTML
|
3676
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
3677
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3678
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3679
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3680
|
+
Redirected to http://test.host/foos/1
|
3681
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
3682
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3683
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3684
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3685
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.932770"], ["updated_at", "2014-09-12 19:58:50.932770"]]
|
3686
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3687
|
+
Processing by FoosController#update as HTML
|
3688
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
3689
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3690
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3691
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3692
|
+
Redirected to http://test.host/foos/1
|
3693
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
3694
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3695
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3696
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3697
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.941143"], ["updated_at", "2014-09-12 19:58:50.941143"]]
|
3698
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3699
|
+
Processing by FoosController#update as HTML
|
3700
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
3701
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3702
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3703
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
3704
|
+
Completed 200 OK in 4ms (Views: 1.0ms | ActiveRecord: 0.2ms)
|
3705
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3706
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3707
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3708
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.951495"], ["updated_at", "2014-09-12 19:58:50.951495"]]
|
3709
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3710
|
+
Processing by FoosController#update as HTML
|
3711
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
3712
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3713
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
3714
|
+
[1m[36m (0.0ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
3715
|
+
Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.1ms)
|
3716
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3717
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3718
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3719
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.959620"], ["updated_at", "2014-09-12 19:58:50.959620"]]
|
3720
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3721
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "foos"[0m
|
3722
|
+
Processing by FoosController#destroy as HTML
|
3723
|
+
Parameters: {"id"=>"1"}
|
3724
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
3725
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3726
|
+
[1m[35mSQL (0.4ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
3727
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3728
|
+
Redirected to http://test.host/foos
|
3729
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
3730
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
3731
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
3732
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3733
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3734
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.968091"], ["updated_at", "2014-09-12 19:58:50.968091"]]
|
3735
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3736
|
+
Processing by FoosController#destroy as HTML
|
3737
|
+
Parameters: {"id"=>"1"}
|
3738
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
3739
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3740
|
+
[1m[35mSQL (0.5ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
3741
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3742
|
+
Redirected to http://test.host/foos
|
3743
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.7ms)
|
3744
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3745
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3746
|
+
Processing by SquirrelController#one as HTML
|
3747
|
+
Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
|
3748
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3749
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3750
|
+
Processing by SquirrelController#two as HTML
|
3751
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
3752
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3753
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3754
|
+
Processing by SquirrelController#three as HTML
|
3755
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
3756
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3757
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.6ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
3758
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3759
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
3760
|
+
[1m[35mSQL (0.9ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.709458"], ["updated_at", "2014-09-12 19:59:04.709458"]]
|
3761
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3762
|
+
Processing by AdminFoosController#index as HTML
|
3763
|
+
Rendered admin_foos/index.html.erb within layouts/application (0.4ms)
|
3764
|
+
Completed 200 OK in 10ms (Views: 9.6ms | ActiveRecord: 0.0ms)
|
3765
|
+
[1m[35mAdminFoo Load (0.2ms)[0m SELECT "admin_foos".* FROM "admin_foos"
|
3766
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
3767
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3768
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3769
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.734642"], ["updated_at", "2014-09-12 19:59:04.734642"]]
|
3770
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3771
|
+
Processing by AdminFoosController#show as HTML
|
3772
|
+
Parameters: {"id"=>"1"}
|
3773
|
+
[1m[35mAdminFoo Load (0.1ms)[0m SELECT "admin_foos".* FROM "admin_foos" WHERE "admin_foos"."id" = ? LIMIT 1 [["id", 1]]
|
3774
|
+
Completed 200 OK in 5ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
3775
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
3776
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3777
|
+
Processing by AdminFoosController#new as HTML
|
3778
|
+
Filter chain halted as #<Proc:0x007fe3a9410458@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3779
|
+
Completed 401 Unauthorized in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
3780
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
3781
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3782
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3783
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.750394"], ["updated_at", "2014-09-12 19:59:04.750394"]]
|
3784
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3785
|
+
Processing by AdminFoosController#edit as HTML
|
3786
|
+
Parameters: {"id"=>"1"}
|
3787
|
+
Filter chain halted as #<Proc:0x007fe3a9410458@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3788
|
+
Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
3789
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
3790
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3791
|
+
Processing by AdminFoosController#create as HTML
|
3792
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}}
|
3793
|
+
Filter chain halted as #<Proc:0x007fe3a9410458@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3794
|
+
Completed 401 Unauthorized in 0ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
3795
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3796
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3797
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3798
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.759401"], ["updated_at", "2014-09-12 19:59:04.759401"]]
|
3799
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3800
|
+
Processing by AdminFoosController#update as HTML
|
3801
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
3802
|
+
Filter chain halted as #<Proc:0x007fe3a9410458@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3803
|
+
Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
3804
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
3805
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3806
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3807
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.764918"], ["updated_at", "2014-09-12 19:59:04.764918"]]
|
3808
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3809
|
+
Processing by AdminFoosController#destroy as HTML
|
3810
|
+
Parameters: {"id"=>"1"}
|
3811
|
+
Filter chain halted as #<Proc:0x007fe3a9410458@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
3812
|
+
Completed 401 Unauthorized in 1ms (Views: 0.4ms | ActiveRecord: 0.0ms)
|
3813
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3814
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3815
|
+
Processing by BunnyController#one as HTML
|
3816
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
3817
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3818
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3819
|
+
Processing by BunnyController#two as HTML
|
3820
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
3821
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3822
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3823
|
+
Processing by BunnyController#three as HTML
|
3824
|
+
Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
|
3825
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3826
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3827
|
+
Processing by CatController#one as HTML
|
3828
|
+
Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
|
3829
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3830
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3831
|
+
Processing by CatController#two as HTML
|
3832
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
3833
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3834
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3835
|
+
Processing by CatController#three as HTML
|
3836
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
3837
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3838
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3839
|
+
Processing by DogController#one as HTML
|
3840
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
3841
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3842
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
3843
|
+
Processing by DogController#two as HTML
|
3844
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
3845
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3846
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3847
|
+
Processing by DogController#three as HTML
|
3848
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
3849
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3850
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3851
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3852
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.846010"], ["updated_at", "2014-09-12 19:59:04.846010"]]
|
3853
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3854
|
+
Processing by FoosController#index as HTML
|
3855
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
3856
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos"[0m
|
3857
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3858
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3859
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3860
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.858276"], ["updated_at", "2014-09-12 19:59:04.858276"]]
|
3861
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3862
|
+
Processing by FoosController#show as HTML
|
3863
|
+
Parameters: {"id"=>"1"}
|
3864
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3865
|
+
Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
|
3866
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3867
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3868
|
+
Processing by FoosController#new as HTML
|
3869
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
3870
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3871
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3872
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3873
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.871844"], ["updated_at", "2014-09-12 19:59:04.871844"]]
|
3874
|
+
[1m[35m (0.0ms)[0m RELEASE SAVEPOINT active_record_1
|
3875
|
+
Processing by FoosController#edit as HTML
|
3876
|
+
Parameters: {"id"=>"1"}
|
3877
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3878
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
|
3879
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3880
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3881
|
+
[1m[35m (0.2ms)[0m SELECT COUNT(*) FROM "foos"
|
3882
|
+
Processing by FoosController#create as HTML
|
3883
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
3884
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3885
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.887197"], ["updated_at", "2014-09-12 19:59:04.887197"]]
|
3886
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3887
|
+
Redirected to http://test.host/foos/1
|
3888
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.6ms)
|
3889
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
3890
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
3891
|
+
[1m[35m (0.1ms)[0m begin transaction
|
3892
|
+
Processing by FoosController#create as HTML
|
3893
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
3894
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3895
|
+
[1m[35mSQL (0.3ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.895520"], ["updated_at", "2014-09-12 19:59:04.895520"]]
|
3896
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3897
|
+
Redirected to http://test.host/foos/1
|
3898
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
3899
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3900
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3901
|
+
Processing by FoosController#create as HTML
|
3902
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
3903
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3904
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.903162"], ["updated_at", "2014-09-12 19:59:04.903162"]]
|
3905
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3906
|
+
Redirected to http://test.host/foos/1
|
3907
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
|
3908
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1[0m
|
3909
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3910
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3911
|
+
Processing by FoosController#create as HTML
|
3912
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
3913
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3914
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
3915
|
+
Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.1ms)
|
3916
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3917
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3918
|
+
Processing by FoosController#create as HTML
|
3919
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
3920
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3921
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
3922
|
+
Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.1ms)
|
3923
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
3924
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3925
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3926
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.926656"], ["updated_at", "2014-09-12 19:59:04.926656"]]
|
3927
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3928
|
+
Processing by FoosController#update as HTML
|
3929
|
+
Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
|
3930
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3931
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3932
|
+
[1m[36mSQL (1.2ms)[0m [1mUPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1[0m [["bar", "yay"], ["updated_at", "2014-09-12 19:59:04.930915"]]
|
3933
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3934
|
+
Redirected to http://test.host/foos/1
|
3935
|
+
Completed 302 Found in 5ms (ActiveRecord: 1.4ms)
|
3936
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3937
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
3938
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3939
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3940
|
+
[1m[36mSQL (0.6ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.938362"], ["updated_at", "2014-09-12 19:59:04.938362"]]
|
3941
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3942
|
+
Processing by FoosController#update as HTML
|
3943
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
3944
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3945
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3946
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3947
|
+
Redirected to http://test.host/foos/1
|
3948
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
3949
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
3950
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3951
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3952
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.946610"], ["updated_at", "2014-09-12 19:59:04.946610"]]
|
3953
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3954
|
+
Processing by FoosController#update as HTML
|
3955
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
3956
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3957
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3958
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3959
|
+
Redirected to http://test.host/foos/1
|
3960
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
3961
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3962
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3963
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3964
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.955910"], ["updated_at", "2014-09-12 19:59:04.955910"]]
|
3965
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3966
|
+
Processing by FoosController#update as HTML
|
3967
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
3968
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3969
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3970
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
3971
|
+
Completed 200 OK in 4ms (Views: 1.0ms | ActiveRecord: 0.2ms)
|
3972
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3973
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3974
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3975
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.966189"], ["updated_at", "2014-09-12 19:59:04.966189"]]
|
3976
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
3977
|
+
Processing by FoosController#update as HTML
|
3978
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
3979
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
3980
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3981
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
3982
|
+
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
|
3983
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
3984
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
3985
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
3986
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.975446"], ["updated_at", "2014-09-12 19:59:04.975446"]]
|
3987
|
+
[1m[35m (0.2ms)[0m RELEASE SAVEPOINT active_record_1
|
3988
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "foos"[0m
|
3989
|
+
Processing by FoosController#destroy as HTML
|
3990
|
+
Parameters: {"id"=>"1"}
|
3991
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
3992
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
3993
|
+
[1m[35mSQL (0.5ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
3994
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
3995
|
+
Redirected to http://test.host/foos
|
3996
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.7ms)
|
3997
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
3998
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
3999
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4000
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4001
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.985403"], ["updated_at", "2014-09-12 19:59:04.985403"]]
|
4002
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4003
|
+
Processing by FoosController#destroy as HTML
|
4004
|
+
Parameters: {"id"=>"1"}
|
4005
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
4006
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4007
|
+
[1m[35mSQL (0.5ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
4008
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4009
|
+
Redirected to http://test.host/foos
|
4010
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.7ms)
|
4011
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
4012
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4013
|
+
Processing by SquirrelController#one as HTML
|
4014
|
+
Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
|
4015
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4016
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4017
|
+
Processing by SquirrelController#two as HTML
|
4018
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
4019
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4020
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4021
|
+
Processing by SquirrelController#three as HTML
|
4022
|
+
Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
|
4023
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4024
|
+
[1m[36mActiveRecord::SchemaMigration Load (0.5ms)[0m [1mSELECT "schema_migrations".* FROM "schema_migrations"[0m
|
4025
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4026
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4027
|
+
[1m[35mSQL (1.4ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:27.990947"], ["updated_at", "2014-09-12 19:59:27.990947"]]
|
4028
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4029
|
+
Processing by AdminFoosController#index as HTML
|
4030
|
+
Rendered admin_foos/index.html.erb within layouts/application (0.5ms)
|
4031
|
+
Completed 200 OK in 12ms (Views: 11.2ms | ActiveRecord: 0.0ms)
|
4032
|
+
[1m[35mAdminFoo Load (0.1ms)[0m SELECT "admin_foos".* FROM "admin_foos"
|
4033
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
4034
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4035
|
+
[1m[36m (0.0ms)[0m [1mSAVEPOINT active_record_1[0m
|
4036
|
+
[1m[35mSQL (0.4ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.020681"], ["updated_at", "2014-09-12 19:59:28.020681"]]
|
4037
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4038
|
+
Processing by AdminFoosController#show as HTML
|
4039
|
+
Parameters: {"id"=>"1"}
|
4040
|
+
[1m[35mAdminFoo Load (0.2ms)[0m SELECT "admin_foos".* FROM "admin_foos" WHERE "admin_foos"."id" = ? LIMIT 1 [["id", 1]]
|
4041
|
+
Completed 200 OK in 4ms (Views: 2.3ms | ActiveRecord: 0.2ms)
|
4042
|
+
[1m[36m (0.6ms)[0m [1mrollback transaction[0m
|
4043
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4044
|
+
Processing by AdminFoosController#new as HTML
|
4045
|
+
Filter chain halted as #<Proc:0x007f890ca0c4a8@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
4046
|
+
Completed 401 Unauthorized in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
|
4047
|
+
[1m[36m (0.1ms)[0m [1mrollback transaction[0m
|
4048
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4049
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4050
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.035616"], ["updated_at", "2014-09-12 19:59:28.035616"]]
|
4051
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4052
|
+
Processing by AdminFoosController#edit as HTML
|
4053
|
+
Parameters: {"id"=>"1"}
|
4054
|
+
Filter chain halted as #<Proc:0x007f890ca0c4a8@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
4055
|
+
Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
4056
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
4057
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4058
|
+
Processing by AdminFoosController#create as HTML
|
4059
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}}
|
4060
|
+
Filter chain halted as #<Proc:0x007f890ca0c4a8@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
4061
|
+
Completed 401 Unauthorized in 1ms (Views: 0.3ms | ActiveRecord: 0.0ms)
|
4062
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4063
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4064
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4065
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.046765"], ["updated_at", "2014-09-12 19:59:28.046765"]]
|
4066
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4067
|
+
Processing by AdminFoosController#update as HTML
|
4068
|
+
Parameters: {"admin_foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
4069
|
+
Filter chain halted as #<Proc:0x007f890ca0c4a8@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
4070
|
+
Completed 401 Unauthorized in 0ms (Views: 0.2ms | ActiveRecord: 0.0ms)
|
4071
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
4072
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4073
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4074
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.053409"], ["updated_at", "2014-09-12 19:59:28.053409"]]
|
4075
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4076
|
+
Processing by AdminFoosController#destroy as HTML
|
4077
|
+
Parameters: {"id"=>"1"}
|
4078
|
+
Filter chain halted as #<Proc:0x007f890ca0c4a8@/Users/tj/github/before-actions-gem/before_actions/spec/dummy/app/controllers/admin_foos_controller.rb:5> rendered or redirected
|
4079
|
+
Completed 401 Unauthorized in 1ms (Views: 0.6ms | ActiveRecord: 0.0ms)
|
4080
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
4081
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4082
|
+
Processing by BunnyController#one as HTML
|
4083
|
+
Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
|
4084
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4085
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4086
|
+
Processing by BunnyController#two as HTML
|
4087
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
4088
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4089
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4090
|
+
Processing by BunnyController#three as HTML
|
4091
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
4092
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4093
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4094
|
+
Processing by CatController#one as HTML
|
4095
|
+
Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
|
4096
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4097
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4098
|
+
Processing by CatController#two as HTML
|
4099
|
+
Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
|
4100
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4101
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4102
|
+
Processing by CatController#three as HTML
|
4103
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
4104
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4105
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4106
|
+
Processing by DogController#one as HTML
|
4107
|
+
Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
|
4108
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4109
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4110
|
+
Processing by DogController#two as HTML
|
4111
|
+
Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
|
4112
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4113
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4114
|
+
Processing by DogController#three as HTML
|
4115
|
+
Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
|
4116
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4117
|
+
[1m[36m (0.0ms)[0m [1mbegin transaction[0m
|
4118
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4119
|
+
[1m[36mSQL (0.8ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.118856"], ["updated_at", "2014-09-12 19:59:28.118856"]]
|
4120
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4121
|
+
Processing by FoosController#index as HTML
|
4122
|
+
Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
|
4123
|
+
[1m[36mFoo Load (0.2ms)[0m [1mSELECT "foos".* FROM "foos"[0m
|
4124
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
4125
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4126
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4127
|
+
[1m[36mSQL (0.7ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.132957"], ["updated_at", "2014-09-12 19:59:28.132957"]]
|
4128
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4129
|
+
Processing by FoosController#show as HTML
|
4130
|
+
Parameters: {"id"=>"1"}
|
4131
|
+
[1m[36mFoo Load (0.2ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
4132
|
+
Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.2ms)
|
4133
|
+
[1m[35m (0.7ms)[0m rollback transaction
|
4134
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4135
|
+
Processing by FoosController#new as HTML
|
4136
|
+
Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
|
4137
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4138
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4139
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4140
|
+
[1m[36mSQL (0.5ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.151251"], ["updated_at", "2014-09-12 19:59:28.151251"]]
|
4141
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4142
|
+
Processing by FoosController#edit as HTML
|
4143
|
+
Parameters: {"id"=>"1"}
|
4144
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
4145
|
+
Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
|
4146
|
+
[1m[35m (1.0ms)[0m rollback transaction
|
4147
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4148
|
+
[1m[35m (0.3ms)[0m SELECT COUNT(*) FROM "foos"
|
4149
|
+
Processing by FoosController#create as HTML
|
4150
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
4151
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4152
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.169141"], ["updated_at", "2014-09-12 19:59:28.169141"]]
|
4153
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4154
|
+
Redirected to http://test.host/foos/1
|
4155
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
|
4156
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
4157
|
+
[1m[36m (0.5ms)[0m [1mrollback transaction[0m
|
4158
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4159
|
+
Processing by FoosController#create as HTML
|
4160
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
4161
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4162
|
+
[1m[35mSQL (0.5ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.176514"], ["updated_at", "2014-09-12 19:59:28.176514"]]
|
4163
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4164
|
+
Redirected to http://test.host/foos/1
|
4165
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.8ms)
|
4166
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
4167
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4168
|
+
Processing by FoosController#create as HTML
|
4169
|
+
Parameters: {"foo"=>{"bar"=>"cool"}}
|
4170
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4171
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.186926"], ["updated_at", "2014-09-12 19:59:28.186926"]]
|
4172
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4173
|
+
Redirected to http://test.host/foos/1
|
4174
|
+
Completed 302 Found in 4ms (ActiveRecord: 0.6ms)
|
4175
|
+
[1m[36mFoo Load (0.2ms)[0m [1mSELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1[0m
|
4176
|
+
[1m[35m (0.6ms)[0m rollback transaction
|
4177
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4178
|
+
Processing by FoosController#create as HTML
|
4179
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
4180
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4181
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4182
|
+
Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.2ms)
|
4183
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4184
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4185
|
+
Processing by FoosController#create as HTML
|
4186
|
+
Parameters: {"foo"=>{"bar"=>""}}
|
4187
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4188
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4189
|
+
Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.1ms)
|
4190
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4191
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4192
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4193
|
+
[1m[36mSQL (0.4ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.214053"], ["updated_at", "2014-09-12 19:59:28.214053"]]
|
4194
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4195
|
+
Processing by FoosController#update as HTML
|
4196
|
+
Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
|
4197
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
4198
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4199
|
+
[1m[36mSQL (1.7ms)[0m [1mUPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1[0m [["bar", "yay"], ["updated_at", "2014-09-12 19:59:28.219843"]]
|
4200
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4201
|
+
Redirected to http://test.host/foos/1
|
4202
|
+
Completed 302 Found in 7ms (ActiveRecord: 2.0ms)
|
4203
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
4204
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
4205
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4206
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4207
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.228861"], ["updated_at", "2014-09-12 19:59:28.228861"]]
|
4208
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4209
|
+
Processing by FoosController#update as HTML
|
4210
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
4211
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
4212
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4213
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4214
|
+
Redirected to http://test.host/foos/1
|
4215
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
4216
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
4217
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4218
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4219
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.236635"], ["updated_at", "2014-09-12 19:59:28.236635"]]
|
4220
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4221
|
+
Processing by FoosController#update as HTML
|
4222
|
+
Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
|
4223
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
4224
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4225
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4226
|
+
Redirected to http://test.host/foos/1
|
4227
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
|
4228
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
4229
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4230
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4231
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.244236"], ["updated_at", "2014-09-12 19:59:28.244236"]]
|
4232
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4233
|
+
Processing by FoosController#update as HTML
|
4234
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
4235
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
4236
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4237
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4238
|
+
Completed 200 OK in 4ms (Views: 1.1ms | ActiveRecord: 0.2ms)
|
4239
|
+
[1m[35m (0.3ms)[0m rollback transaction
|
4240
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4241
|
+
[1m[35m (0.0ms)[0m SAVEPOINT active_record_1
|
4242
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.252865"], ["updated_at", "2014-09-12 19:59:28.252865"]]
|
4243
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4244
|
+
Processing by FoosController#update as HTML
|
4245
|
+
Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
|
4246
|
+
[1m[36mFoo Load (0.1ms)[0m [1mSELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1[0m [["id", 1]]
|
4247
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4248
|
+
[1m[36m (0.1ms)[0m [1mROLLBACK TO SAVEPOINT active_record_1[0m
|
4249
|
+
Completed 200 OK in 4ms (Views: 1.2ms | ActiveRecord: 0.2ms)
|
4250
|
+
[1m[35m (0.4ms)[0m rollback transaction
|
4251
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4252
|
+
[1m[35m (0.1ms)[0m SAVEPOINT active_record_1
|
4253
|
+
[1m[36mSQL (0.3ms)[0m [1mINSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?)[0m [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.262647"], ["updated_at", "2014-09-12 19:59:28.262647"]]
|
4254
|
+
[1m[35m (0.1ms)[0m RELEASE SAVEPOINT active_record_1
|
4255
|
+
[1m[36m (0.1ms)[0m [1mSELECT COUNT(*) FROM "foos"[0m
|
4256
|
+
Processing by FoosController#destroy as HTML
|
4257
|
+
Parameters: {"id"=>"1"}
|
4258
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
4259
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4260
|
+
[1m[35mSQL (0.5ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
4261
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4262
|
+
Redirected to http://test.host/foos
|
4263
|
+
Completed 302 Found in 3ms (ActiveRecord: 0.8ms)
|
4264
|
+
[1m[35m (0.1ms)[0m SELECT COUNT(*) FROM "foos"
|
4265
|
+
[1m[36m (0.4ms)[0m [1mrollback transaction[0m
|
4266
|
+
[1m[35m (0.1ms)[0m begin transaction
|
4267
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4268
|
+
[1m[35mSQL (0.2ms)[0m INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.272298"], ["updated_at", "2014-09-12 19:59:28.272298"]]
|
4269
|
+
[1m[36m (0.1ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4270
|
+
Processing by FoosController#destroy as HTML
|
4271
|
+
Parameters: {"id"=>"1"}
|
4272
|
+
[1m[35mFoo Load (0.1ms)[0m SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
|
4273
|
+
[1m[36m (0.1ms)[0m [1mSAVEPOINT active_record_1[0m
|
4274
|
+
[1m[35mSQL (0.3ms)[0m DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
|
4275
|
+
[1m[36m (0.0ms)[0m [1mRELEASE SAVEPOINT active_record_1[0m
|
4276
|
+
Redirected to http://test.host/foos
|
4277
|
+
Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
|
4278
|
+
[1m[35m (0.5ms)[0m rollback transaction
|
4279
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4280
|
+
Processing by SquirrelController#one as HTML
|
4281
|
+
Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
|
4282
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4283
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4284
|
+
Processing by SquirrelController#two as HTML
|
4285
|
+
Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
|
4286
|
+
[1m[35m (0.1ms)[0m rollback transaction
|
4287
|
+
[1m[36m (0.1ms)[0m [1mbegin transaction[0m
|
4288
|
+
Processing by SquirrelController#three as HTML
|
4289
|
+
Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
|
4290
|
+
[1m[35m (0.1ms)[0m rollback transaction
|