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.
Files changed (34) hide show
  1. checksums.yaml +4 -4
  2. data/lib/before_actions.rb +3 -8
  3. data/lib/before_actions/controller/controller.rb +18 -0
  4. data/lib/before_actions/controller/scope.rb +24 -0
  5. data/lib/before_actions/monkey_patching.rb +5 -0
  6. data/lib/before_actions/version.rb +1 -1
  7. data/spec/controllers/bunny_controller_spec.rb +29 -0
  8. data/spec/controllers/cat_controller_spec.rb +29 -0
  9. data/spec/controllers/dog_controller_spec.rb +29 -0
  10. data/spec/controllers/squirrel_controller_spec.rb +29 -0
  11. data/spec/dummy/app/controllers/admin_foos_controller.rb +5 -5
  12. data/spec/dummy/app/controllers/bunny_controller.rb +24 -0
  13. data/spec/dummy/app/controllers/cat_controller.rb +19 -0
  14. data/spec/dummy/app/controllers/dog_controller.rb +18 -0
  15. data/spec/dummy/app/controllers/foos_controller.rb +6 -6
  16. data/spec/dummy/app/controllers/squirrel_controller.rb +16 -0
  17. data/spec/dummy/app/views/bunny/one.html.erb +2 -0
  18. data/spec/dummy/app/views/bunny/three.html.erb +2 -0
  19. data/spec/dummy/app/views/bunny/two.html.erb +2 -0
  20. data/spec/dummy/app/views/cat/one.html.erb +2 -0
  21. data/spec/dummy/app/views/cat/three.html.erb +2 -0
  22. data/spec/dummy/app/views/cat/two.html.erb +2 -0
  23. data/spec/dummy/app/views/dog/one.html.erb +2 -0
  24. data/spec/dummy/app/views/dog/three.html.erb +2 -0
  25. data/spec/dummy/app/views/dog/two.html.erb +2 -0
  26. data/spec/dummy/app/views/squirrel/one.html.erb +2 -0
  27. data/spec/dummy/app/views/squirrel/three.html.erb +2 -0
  28. data/spec/dummy/app/views/squirrel/two.html.erb +2 -0
  29. data/spec/dummy/config/routes.rb +18 -2
  30. data/spec/dummy/lib/templates/rails/scaffold_controller/controller.rb +25 -21
  31. data/spec/dummy/log/test.log +2700 -0
  32. metadata +47 -6
  33. data/app/controllers/before_actions/foo_controller.rb +0 -8
  34. data/lib/before_actions/controller.rb +0 -47
@@ -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
   (0.6ms) rollback transaction
1591
+  (1.5ms) CREATE TABLE "admin_foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "bar" varchar(255), "created_at" datetime, "updated_at" datetime) 
1592
+  (0.9ms) CREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "bar" varchar(255), "created_at" datetime, "updated_at" datetime)
1593
+  (0.9ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1594
+  (0.4ms) select sqlite_version(*)
1595
+  (1.0ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1596
+  (0.1ms) SELECT version FROM "schema_migrations"
1597
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140912042735')
1598
+  (0.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140912040816')
1599
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
1600
+  (0.1ms) begin transaction
1601
+  (0.1ms) SAVEPOINT active_record_1
1602
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ AdminFoo Load (0.2ms) SELECT "admin_foos".* FROM "admin_foos"
1608
+  (1.1ms) rollback transaction
1609
+  (0.1ms) begin transaction
1610
+  (0.1ms) SAVEPOINT active_record_1
1611
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1613
+ Processing by AdminFoosController#show as HTML
1614
+ Parameters: {"id"=>"1"}
1615
+ AdminFoo Load (0.2ms) 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
+  (0.6ms) rollback transaction
1618
+  (0.1ms) 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
+  (0.1ms) rollback transaction
1623
+  (0.1ms) begin transaction
1624
+  (0.1ms) SAVEPOINT active_record_1
1625
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.7ms) rollback transaction
1632
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
1638
+  (0.1ms) begin transaction
1639
+  (0.1ms) SAVEPOINT active_record_1
1640
+ SQL (0.4ms) INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.270801"], ["updated_at", "2014-09-12 05:29:41.270801"]]
1641
+  (0.0ms) 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
+  (0.6ms) rollback transaction
1647
+  (0.1ms) begin transaction
1648
+  (0.1ms) SAVEPOINT active_record_1
1649
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.6ms) rollback transaction
1656
+  (0.1ms) begin transaction
1657
+  (0.1ms) SAVEPOINT active_record_1
1658
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.287857"], ["updated_at", "2014-09-12 05:29:41.287857"]]
1659
+  (0.0ms) 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
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos"
1663
+  (0.6ms) rollback transaction
1664
+  (0.2ms) begin transaction
1665
+  (0.1ms) SAVEPOINT active_record_1
1666
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.298788"], ["updated_at", "2014-09-12 05:29:41.298788"]]
1667
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1668
+ Processing by FoosController#show as HTML
1669
+ Parameters: {"id"=>"1"}
1670
+ Foo Load (0.2ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
1671
+ Completed 200 OK in 3ms (Views: 1.7ms | ActiveRecord: 0.2ms)
1672
+  (0.5ms) rollback transaction
1673
+  (0.1ms) begin transaction
1674
+ Processing by FoosController#new as HTML
1675
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
1676
+  (0.1ms) rollback transaction
1677
+  (0.1ms) begin transaction
1678
+  (0.1ms) SAVEPOINT active_record_1
1679
+ SQL (0.5ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.312349"], ["updated_at", "2014-09-12 05:29:41.312349"]]
1680
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1681
+ Processing by FoosController#edit as HTML
1682
+ Parameters: {"id"=>"1"}
1683
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
1684
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
1685
+  (0.6ms) rollback transaction
1686
+  (0.1ms) begin transaction
1687
+  (0.3ms) SELECT COUNT(*) FROM "foos"
1688
+ Processing by FoosController#create as HTML
1689
+ Parameters: {"foo"=>{"bar"=>"cool"}}
1690
+  (0.1ms) SAVEPOINT active_record_1
1691
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1693
+ Redirected to http://test.host/foos/1
1694
+ Completed 302 Found in 6ms (ActiveRecord: 0.7ms)
1695
+  (0.1ms) SELECT COUNT(*) FROM "foos"
1696
+  (0.6ms) rollback transaction
1697
+  (0.1ms) begin transaction
1698
+ Processing by FoosController#create as HTML
1699
+ Parameters: {"foo"=>{"bar"=>"cool"}}
1700
+  (0.1ms) SAVEPOINT active_record_1
1701
+ SQL (1.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1703
+ Redirected to http://test.host/foos/1
1704
+ Completed 302 Found in 7ms (ActiveRecord: 1.4ms)
1705
+  (0.5ms) rollback transaction
1706
+  (0.1ms) begin transaction
1707
+ Processing by FoosController#create as HTML
1708
+ Parameters: {"foo"=>{"bar"=>"cool"}}
1709
+  (0.1ms) SAVEPOINT active_record_1
1710
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.353644"], ["updated_at", "2014-09-12 05:29:41.353644"]]
1711
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1712
+ Redirected to http://test.host/foos/1
1713
+ Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
1714
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1
1715
+  (0.6ms) rollback transaction
1716
+  (0.1ms) begin transaction
1717
+ Processing by FoosController#create as HTML
1718
+ Parameters: {"foo"=>{"bar"=>""}}
1719
+  (0.1ms) SAVEPOINT active_record_1
1720
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1721
+ Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.1ms)
1722
+  (0.1ms) rollback transaction
1723
+  (0.0ms) begin transaction
1724
+ Processing by FoosController#create as HTML
1725
+ Parameters: {"foo"=>{"bar"=>""}}
1726
+  (0.0ms) SAVEPOINT active_record_1
1727
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1728
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
1729
+  (0.0ms) rollback transaction
1730
+  (0.0ms) begin transaction
1731
+  (0.0ms) SAVEPOINT active_record_1
1732
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.376047"], ["updated_at", "2014-09-12 05:29:41.376047"]]
1733
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1734
+ Processing by FoosController#update as HTML
1735
+ Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
1736
+ Foo Load (0.0ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
1737
+  (0.1ms) SAVEPOINT active_record_1
1738
+ SQL (1.1ms) UPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1 [["bar", "yay"], ["updated_at", "2014-09-12 05:29:41.379402"]]
1739
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1740
+ Redirected to http://test.host/foos/1
1741
+ Completed 302 Found in 5ms (ActiveRecord: 1.3ms)
1742
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
1743
+  (0.6ms) rollback transaction
1744
+  (0.1ms) begin transaction
1745
+  (0.1ms) SAVEPOINT active_record_1
1746
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.387212"], ["updated_at", "2014-09-12 05:29:41.387212"]]
1747
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1748
+ Processing by FoosController#update as HTML
1749
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
1750
+ Foo Load (0.0ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
1751
+  (0.1ms) SAVEPOINT active_record_1
1752
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1753
+ Redirected to http://test.host/foos/1
1754
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
1755
+  (0.7ms) rollback transaction
1756
+  (0.1ms) begin transaction
1757
+  (0.1ms) SAVEPOINT active_record_1
1758
+ SQL (0.5ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.395535"], ["updated_at", "2014-09-12 05:29:41.395535"]]
1759
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1760
+ Processing by FoosController#update as HTML
1761
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
1762
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
1763
+  (0.1ms) SAVEPOINT active_record_1
1764
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1765
+ Redirected to http://test.host/foos/1
1766
+ Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
1767
+  (0.7ms) rollback transaction
1768
+  (0.1ms) begin transaction
1769
+  (0.1ms) SAVEPOINT active_record_1
1770
+ SQL (0.5ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.407132"], ["updated_at", "2014-09-12 05:29:41.407132"]]
1771
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1772
+ Processing by FoosController#update as HTML
1773
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
1774
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
1775
+  (0.1ms) SAVEPOINT active_record_1
1776
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1777
+ Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.2ms)
1778
+  (0.6ms) rollback transaction
1779
+  (0.1ms) begin transaction
1780
+  (0.0ms) SAVEPOINT active_record_1
1781
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.415996"], ["updated_at", "2014-09-12 05:29:41.415996"]]
1782
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1783
+ Processing by FoosController#update as HTML
1784
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
1785
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
1786
+  (0.0ms) SAVEPOINT active_record_1
1787
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1788
+ Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.1ms)
1789
+  (0.6ms) rollback transaction
1790
+  (0.1ms) begin transaction
1791
+  (0.1ms) SAVEPOINT active_record_1
1792
+ SQL (0.5ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:29:41.424548"], ["updated_at", "2014-09-12 05:29:41.424548"]]
1793
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1794
+  (0.1ms) SELECT COUNT(*) FROM "foos"
1795
+ Processing by FoosController#destroy as HTML
1796
+ Parameters: {"id"=>"1"}
1797
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
1798
+  (0.0ms) SAVEPOINT active_record_1
1799
+ SQL (0.4ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
1800
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1801
+ Redirected to http://test.host/foos
1802
+ Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
1803
+  (0.1ms) SELECT COUNT(*) FROM "foos"
1804
+  (0.6ms) rollback transaction
1805
+  (0.1ms) begin transaction
1806
+  (0.1ms) SAVEPOINT active_record_1
1807
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1809
+ Processing by FoosController#destroy as HTML
1810
+ Parameters: {"id"=>"1"}
1811
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
1812
+  (0.1ms) SAVEPOINT active_record_1
1813
+ SQL (0.5ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
1814
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1815
+ Redirected to http://test.host/foos
1816
+ Completed 302 Found in 3ms (ActiveRecord: 0.7ms)
1817
+  (0.6ms) rollback transaction
1818
+  (1.4ms) CREATE TABLE "admin_foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "bar" varchar(255), "created_at" datetime, "updated_at" datetime) 
1819
+  (1.0ms) CREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "bar" varchar(255), "created_at" datetime, "updated_at" datetime)
1820
+  (2.7ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
1821
+  (0.2ms) select sqlite_version(*)
1822
+  (5.4ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
1823
+  (0.2ms) SELECT version FROM "schema_migrations"
1824
+  (3.8ms) INSERT INTO "schema_migrations" (version) VALUES ('20140912042735')
1825
+  (1.2ms) INSERT INTO "schema_migrations" (version) VALUES ('20140912040816')
1826
+ ActiveRecord::SchemaMigration Load (0.2ms) SELECT "schema_migrations".* FROM "schema_migrations"
1827
+  (0.2ms) begin transaction
1828
+  (0.1ms) SAVEPOINT active_record_1
1829
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ AdminFoo Load (0.1ms) SELECT "admin_foos".* FROM "admin_foos"
1835
+  (0.5ms) rollback transaction
1836
+  (0.1ms) begin transaction
1837
+  (0.0ms) SAVEPOINT active_record_1
1838
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1840
+ Processing by AdminFoosController#show as HTML
1841
+ Parameters: {"id"=>"1"}
1842
+ AdminFoo Load (0.2ms) 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
+  (0.6ms) rollback transaction
1845
+  (0.1ms) 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
+  (0.1ms) rollback transaction
1850
+  (0.1ms) begin transaction
1851
+  (0.0ms) SAVEPOINT active_record_1
1852
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.5ms) rollback transaction
1859
+  (0.0ms) begin transaction
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
+  (0.1ms) rollback transaction
1865
+  (0.1ms) begin transaction
1866
+  (0.1ms) SAVEPOINT active_record_1
1867
+ SQL (0.6ms) INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.200714"], ["updated_at", "2014-09-12 05:31:48.200714"]]
1868
+  (0.1ms) 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
+  (0.5ms) rollback transaction
1874
+  (0.1ms) begin transaction
1875
+  (0.0ms) SAVEPOINT active_record_1
1876
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+  (0.5ms) rollback transaction
1883
+  (0.1ms) begin transaction
1884
+  (0.1ms) SAVEPOINT active_record_1
1885
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.216616"], ["updated_at", "2014-09-12 05:31:48.216616"]]
1886
+  (0.0ms) 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
+ Foo Load (0.2ms) SELECT "foos".* FROM "foos"
1890
+  (0.6ms) rollback transaction
1891
+  (0.1ms) begin transaction
1892
+  (0.0ms) SAVEPOINT active_record_1
1893
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.226010"], ["updated_at", "2014-09-12 05:31:48.226010"]]
1894
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1895
+ Processing by FoosController#show as HTML
1896
+ Parameters: {"id"=>"1"}
1897
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
1898
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.1ms)
1899
+  (0.5ms) rollback transaction
1900
+  (0.1ms) begin transaction
1901
+ Processing by FoosController#new as HTML
1902
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
1903
+  (0.1ms) rollback transaction
1904
+  (0.1ms) begin transaction
1905
+  (0.1ms) SAVEPOINT active_record_1
1906
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.241339"], ["updated_at", "2014-09-12 05:31:48.241339"]]
1907
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1908
+ Processing by FoosController#edit as HTML
1909
+ Parameters: {"id"=>"1"}
1910
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
1911
+ Completed 200 OK in 4ms (Views: 2.7ms | ActiveRecord: 0.1ms)
1912
+  (0.6ms) rollback transaction
1913
+  (0.1ms) begin transaction
1914
+  (0.2ms) SELECT COUNT(*) FROM "foos"
1915
+ Processing by FoosController#create as HTML
1916
+ Parameters: {"foo"=>{"bar"=>"cool"}}
1917
+  (0.1ms) SAVEPOINT active_record_1
1918
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1920
+ Redirected to http://test.host/foos/1
1921
+ Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
1922
+  (0.1ms) SELECT COUNT(*) FROM "foos"
1923
+  (0.4ms) rollback transaction
1924
+  (0.1ms) begin transaction
1925
+ Processing by FoosController#create as HTML
1926
+ Parameters: {"foo"=>{"bar"=>"cool"}}
1927
+  (0.1ms) SAVEPOINT active_record_1
1928
+ SQL (0.8ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1930
+ Redirected to http://test.host/foos/1
1931
+ Completed 302 Found in 3ms (ActiveRecord: 0.9ms)
1932
+  (0.6ms) rollback transaction
1933
+  (0.1ms) begin transaction
1934
+ Processing by FoosController#create as HTML
1935
+ Parameters: {"foo"=>{"bar"=>"cool"}}
1936
+  (0.1ms) SAVEPOINT active_record_1
1937
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.272289"], ["updated_at", "2014-09-12 05:31:48.272289"]]
1938
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1939
+ Redirected to http://test.host/foos/1
1940
+ Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
1941
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1
1942
+  (0.6ms) rollback transaction
1943
+  (2.3ms) begin transaction
1944
+ Processing by FoosController#create as HTML
1945
+ Parameters: {"foo"=>{"bar"=>""}}
1946
+  (0.1ms) SAVEPOINT active_record_1
1947
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
1948
+ Completed 200 OK in 10ms (Views: 1.0ms | ActiveRecord: 0.2ms)
1949
+  (0.0ms) rollback transaction
1950
+  (0.0ms) begin transaction
1951
+ Processing by FoosController#create as HTML
1952
+ Parameters: {"foo"=>{"bar"=>""}}
1953
+  (0.1ms) SAVEPOINT active_record_1
1954
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
1955
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
1956
+  (0.1ms) rollback transaction
1957
+  (0.0ms) begin transaction
1958
+  (0.0ms) SAVEPOINT active_record_1
1959
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.299675"], ["updated_at", "2014-09-12 05:31:48.299675"]]
1960
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1961
+ Processing by FoosController#update as HTML
1962
+ Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
1963
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
1964
+  (0.0ms) SAVEPOINT active_record_1
1965
+ SQL (1.2ms) UPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1 [["bar", "yay"], ["updated_at", "2014-09-12 05:31:48.302832"]]
1966
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1967
+ Redirected to http://test.host/foos/1
1968
+ Completed 302 Found in 4ms (ActiveRecord: 1.4ms)
1969
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
1970
+  (0.7ms) rollback transaction
1971
+  (0.1ms) begin transaction
1972
+  (0.0ms) SAVEPOINT active_record_1
1973
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.309486"], ["updated_at", "2014-09-12 05:31:48.309486"]]
1974
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1975
+ Processing by FoosController#update as HTML
1976
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
1977
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
1978
+  (0.1ms) SAVEPOINT active_record_1
1979
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1980
+ Redirected to http://test.host/foos/1
1981
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
1982
+  (0.6ms) rollback transaction
1983
+  (0.1ms) begin transaction
1984
+  (0.0ms) SAVEPOINT active_record_1
1985
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.316322"], ["updated_at", "2014-09-12 05:31:48.316322"]]
1986
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1987
+ Processing by FoosController#update as HTML
1988
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
1989
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
1990
+  (0.0ms) SAVEPOINT active_record_1
1991
+  (0.0ms) RELEASE SAVEPOINT active_record_1
1992
+ Redirected to http://test.host/foos/1
1993
+ Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
1994
+  (0.6ms) rollback transaction
1995
+  (0.1ms) begin transaction
1996
+  (0.1ms) SAVEPOINT active_record_1
1997
+ SQL (0.5ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.323142"], ["updated_at", "2014-09-12 05:31:48.323142"]]
1998
+  (0.1ms) RELEASE SAVEPOINT active_record_1
1999
+ Processing by FoosController#update as HTML
2000
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
2001
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2002
+  (0.1ms) SAVEPOINT active_record_1
2003
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2004
+ Completed 200 OK in 4ms (Views: 1.4ms | ActiveRecord: 0.2ms)
2005
+  (0.5ms) rollback transaction
2006
+  (0.1ms) begin transaction
2007
+  (0.0ms) SAVEPOINT active_record_1
2008
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.332489"], ["updated_at", "2014-09-12 05:31:48.332489"]]
2009
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2010
+ Processing by FoosController#update as HTML
2011
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
2012
+ Foo Load (0.0ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2013
+  (0.0ms) SAVEPOINT active_record_1
2014
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2015
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
2016
+  (0.6ms) rollback transaction
2017
+  (0.1ms) begin transaction
2018
+  (0.1ms) SAVEPOINT active_record_1
2019
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:31:48.340064"], ["updated_at", "2014-09-12 05:31:48.340064"]]
2020
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2021
+  (0.1ms) SELECT COUNT(*) FROM "foos"
2022
+ Processing by FoosController#destroy as HTML
2023
+ Parameters: {"id"=>"1"}
2024
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2025
+  (0.0ms) SAVEPOINT active_record_1
2026
+ SQL (0.4ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
2027
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2028
+ Redirected to http://test.host/foos
2029
+ Completed 302 Found in 2ms (ActiveRecord: 0.6ms)
2030
+  (0.1ms) SELECT COUNT(*) FROM "foos"
2031
+  (0.5ms) rollback transaction
2032
+  (0.1ms) begin transaction
2033
+  (0.1ms) SAVEPOINT active_record_1
2034
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2036
+ Processing by FoosController#destroy as HTML
2037
+ Parameters: {"id"=>"1"}
2038
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2039
+  (0.1ms) SAVEPOINT active_record_1
2040
+ SQL (0.5ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
2041
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2042
+ Redirected to http://test.host/foos
2043
+ Completed 302 Found in 2ms (ActiveRecord: 0.7ms)
2044
+  (0.5ms) rollback transaction
2045
+  (1.7ms) CREATE TABLE "admin_foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "bar" varchar(255), "created_at" datetime, "updated_at" datetime) 
2046
+  (1.1ms) CREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "bar" varchar(255), "created_at" datetime, "updated_at" datetime)
2047
+  (1.2ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2048
+  (0.1ms) select sqlite_version(*)
2049
+  (1.2ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2050
+  (0.2ms) SELECT version FROM "schema_migrations"
2051
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140912042735')
2052
+  (0.9ms) INSERT INTO "schema_migrations" (version) VALUES ('20140912040816')
2053
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2054
+  (0.1ms) begin transaction
2055
+  (0.1ms) SAVEPOINT active_record_1
2056
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ AdminFoo Load (0.2ms) SELECT "admin_foos".* FROM "admin_foos"
2062
+  (0.5ms) rollback transaction
2063
+  (0.1ms) begin transaction
2064
+  (0.1ms) SAVEPOINT active_record_1
2065
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2067
+ Processing by AdminFoosController#show as HTML
2068
+ Parameters: {"id"=>"1"}
2069
+ AdminFoo Load (0.2ms) 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
+  (0.9ms) rollback transaction
2072
+  (0.1ms) 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
+  (0.1ms) rollback transaction
2077
+  (0.1ms) begin transaction
2078
+  (0.1ms) SAVEPOINT active_record_1
2079
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.5ms) rollback transaction
2086
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
2092
+  (0.0ms) begin transaction
2093
+  (0.0ms) SAVEPOINT active_record_1
2094
+ SQL (0.2ms) INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.557828"], ["updated_at", "2014-09-12 05:33:23.557828"]]
2095
+  (0.0ms) 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
+  (0.5ms) rollback transaction
2101
+  (0.1ms) begin transaction
2102
+  (0.1ms) SAVEPOINT active_record_1
2103
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.5ms) rollback transaction
2110
+  (0.2ms) begin transaction
2111
+  (0.1ms) SAVEPOINT active_record_1
2112
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.593480"], ["updated_at", "2014-09-12 05:33:23.593480"]]
2113
+  (0.0ms) 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
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos"
2117
+  (0.4ms) rollback transaction
2118
+  (0.1ms) begin transaction
2119
+  (0.1ms) SAVEPOINT active_record_1
2120
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.604489"], ["updated_at", "2014-09-12 05:33:23.604489"]]
2121
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2122
+ Processing by FoosController#show as HTML
2123
+ Parameters: {"id"=>"1"}
2124
+ Foo Load (0.2ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2125
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.2ms)
2126
+  (0.4ms) rollback transaction
2127
+  (0.1ms) begin transaction
2128
+ Processing by FoosController#new as HTML
2129
+ Completed 200 OK in 4ms (Views: 3.3ms | ActiveRecord: 0.0ms)
2130
+  (0.1ms) rollback transaction
2131
+  (0.1ms) begin transaction
2132
+  (0.0ms) SAVEPOINT active_record_1
2133
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.620900"], ["updated_at", "2014-09-12 05:33:23.620900"]]
2134
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2135
+ Processing by FoosController#edit as HTML
2136
+ Parameters: {"id"=>"1"}
2137
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2138
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.1ms)
2139
+  (0.5ms) rollback transaction
2140
+  (0.1ms) begin transaction
2141
+  (0.2ms) SELECT COUNT(*) FROM "foos"
2142
+ Processing by FoosController#create as HTML
2143
+ Parameters: {"foo"=>{"bar"=>"cool"}}
2144
+  (0.1ms) SAVEPOINT active_record_1
2145
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2147
+ Redirected to http://test.host/foos/1
2148
+ Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
2149
+  (0.1ms) SELECT COUNT(*) FROM "foos"
2150
+  (0.3ms) rollback transaction
2151
+  (0.1ms) begin transaction
2152
+ Processing by FoosController#create as HTML
2153
+ Parameters: {"foo"=>{"bar"=>"cool"}}
2154
+  (0.1ms) SAVEPOINT active_record_1
2155
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2157
+ Redirected to http://test.host/foos/1
2158
+ Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
2159
+  (0.6ms) rollback transaction
2160
+  (0.1ms) begin transaction
2161
+ Processing by FoosController#create as HTML
2162
+ Parameters: {"foo"=>{"bar"=>"cool"}}
2163
+  (0.1ms) SAVEPOINT active_record_1
2164
+ SQL (0.2ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.650557"], ["updated_at", "2014-09-12 05:33:23.650557"]]
2165
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2166
+ Redirected to http://test.host/foos/1
2167
+ Completed 302 Found in 2ms (ActiveRecord: 0.3ms)
2168
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1
2169
+  (0.5ms) rollback transaction
2170
+  (0.1ms) begin transaction
2171
+ Processing by FoosController#create as HTML
2172
+ Parameters: {"foo"=>{"bar"=>""}}
2173
+  (0.1ms) SAVEPOINT active_record_1
2174
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2175
+ Completed 200 OK in 10ms (Views: 0.9ms | ActiveRecord: 0.2ms)
2176
+  (0.1ms) rollback transaction
2177
+  (0.1ms) begin transaction
2178
+ Processing by FoosController#create as HTML
2179
+ Parameters: {"foo"=>{"bar"=>""}}
2180
+  (0.1ms) SAVEPOINT active_record_1
2181
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2182
+ Completed 200 OK in 3ms (Views: 1.1ms | ActiveRecord: 0.1ms)
2183
+  (0.1ms) rollback transaction
2184
+  (0.1ms) begin transaction
2185
+  (0.1ms) SAVEPOINT active_record_1
2186
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.679012"], ["updated_at", "2014-09-12 05:33:23.679012"]]
2187
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2188
+ Processing by FoosController#update as HTML
2189
+ Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
2190
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2191
+  (0.1ms) SAVEPOINT active_record_1
2192
+ SQL (1.3ms) UPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1 [["bar", "yay"], ["updated_at", "2014-09-12 05:33:23.684505"]]
2193
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2194
+ Redirected to http://test.host/foos/1
2195
+ Completed 302 Found in 6ms (ActiveRecord: 1.6ms)
2196
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2197
+  (0.5ms) rollback transaction
2198
+  (0.3ms) begin transaction
2199
+  (0.1ms) SAVEPOINT active_record_1
2200
+ SQL (0.5ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.692575"], ["updated_at", "2014-09-12 05:33:23.692575"]]
2201
+  (0.2ms) RELEASE SAVEPOINT active_record_1
2202
+ Processing by FoosController#update as HTML
2203
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
2204
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2205
+  (0.1ms) SAVEPOINT active_record_1
2206
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2207
+ Redirected to http://test.host/foos/1
2208
+ Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
2209
+  (0.4ms) rollback transaction
2210
+  (0.1ms) begin transaction
2211
+  (0.1ms) SAVEPOINT active_record_1
2212
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.701018"], ["updated_at", "2014-09-12 05:33:23.701018"]]
2213
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2214
+ Processing by FoosController#update as HTML
2215
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
2216
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2217
+  (0.1ms) SAVEPOINT active_record_1
2218
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2219
+ Redirected to http://test.host/foos/1
2220
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
2221
+  (0.4ms) rollback transaction
2222
+  (0.1ms) begin transaction
2223
+  (0.0ms) SAVEPOINT active_record_1
2224
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.709045"], ["updated_at", "2014-09-12 05:33:23.709045"]]
2225
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2226
+ Processing by FoosController#update as HTML
2227
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
2228
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2229
+  (0.1ms) SAVEPOINT active_record_1
2230
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2231
+ Completed 200 OK in 4ms (Views: 1.2ms | ActiveRecord: 0.3ms)
2232
+  (0.6ms) rollback transaction
2233
+  (0.1ms) begin transaction
2234
+  (0.0ms) SAVEPOINT active_record_1
2235
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.719830"], ["updated_at", "2014-09-12 05:33:23.719830"]]
2236
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2237
+ Processing by FoosController#update as HTML
2238
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
2239
+ Foo Load (0.0ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2240
+  (0.0ms) SAVEPOINT active_record_1
2241
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2242
+ Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.1ms)
2243
+  (0.5ms) rollback transaction
2244
+  (0.1ms) begin transaction
2245
+  (0.1ms) SAVEPOINT active_record_1
2246
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:33:23.726988"], ["updated_at", "2014-09-12 05:33:23.726988"]]
2247
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2248
+  (0.1ms) SELECT COUNT(*) FROM "foos"
2249
+ Processing by FoosController#destroy as HTML
2250
+ Parameters: {"id"=>"1"}
2251
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2252
+  (0.1ms) SAVEPOINT active_record_1
2253
+ SQL (0.4ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
2254
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2255
+ Redirected to http://test.host/foos
2256
+ Completed 302 Found in 2ms (ActiveRecord: 0.6ms)
2257
+  (0.1ms) SELECT COUNT(*) FROM "foos"
2258
+  (0.5ms) rollback transaction
2259
+  (0.1ms) begin transaction
2260
+  (0.1ms) SAVEPOINT active_record_1
2261
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2263
+ Processing by FoosController#destroy as HTML
2264
+ Parameters: {"id"=>"1"}
2265
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2266
+  (0.1ms) SAVEPOINT active_record_1
2267
+ SQL (0.4ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
2268
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2269
+ Redirected to http://test.host/foos
2270
+ Completed 302 Found in 2ms (ActiveRecord: 0.7ms)
2271
+  (0.5ms) rollback transaction
2272
+  (1.6ms) CREATE TABLE "admin_foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "bar" varchar(255), "created_at" datetime, "updated_at" datetime) 
2273
+  (1.3ms) CREATE TABLE "foos" ("id" INTEGER PRIMARY KEY AUTOINCREMENT NOT NULL, "bar" varchar(255), "created_at" datetime, "updated_at" datetime)
2274
+  (3.0ms) CREATE TABLE "schema_migrations" ("version" varchar(255) NOT NULL) 
2275
+  (0.1ms) select sqlite_version(*)
2276
+  (1.3ms) CREATE UNIQUE INDEX "unique_schema_migrations" ON "schema_migrations" ("version")
2277
+  (0.2ms) SELECT version FROM "schema_migrations"
2278
+  (9.7ms) INSERT INTO "schema_migrations" (version) VALUES ('20140912042735')
2279
+  (1.4ms) INSERT INTO "schema_migrations" (version) VALUES ('20140912040816')
2280
+ ActiveRecord::SchemaMigration Load (0.1ms) SELECT "schema_migrations".* FROM "schema_migrations"
2281
+  (0.1ms) begin transaction
2282
+  (0.1ms) SAVEPOINT active_record_1
2283
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ AdminFoo Load (0.1ms) SELECT "admin_foos".* FROM "admin_foos"
2289
+  (0.6ms) rollback transaction
2290
+  (0.1ms) begin transaction
2291
+  (0.1ms) SAVEPOINT active_record_1
2292
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2294
+ Processing by AdminFoosController#show as HTML
2295
+ Parameters: {"id"=>"1"}
2296
+ AdminFoo Load (0.1ms) 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
+  (0.5ms) rollback transaction
2299
+  (0.1ms) 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
+  (0.1ms) rollback transaction
2304
+  (0.2ms) begin transaction
2305
+  (0.1ms) SAVEPOINT active_record_1
2306
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.4ms) rollback transaction
2313
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
2319
+  (0.1ms) begin transaction
2320
+  (0.1ms) SAVEPOINT active_record_1
2321
+ SQL (0.4ms) INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.496313"], ["updated_at", "2014-09-12 05:34:21.496313"]]
2322
+  (0.1ms) 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
+  (0.5ms) rollback transaction
2328
+  (0.1ms) begin transaction
2329
+  (0.1ms) SAVEPOINT active_record_1
2330
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.4ms) rollback transaction
2337
+  (0.1ms) begin transaction
2338
+  (0.1ms) SAVEPOINT active_record_1
2339
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.513061"], ["updated_at", "2014-09-12 05:34:21.513061"]]
2340
+  (0.1ms) 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
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos"
2344
+  (0.4ms) rollback transaction
2345
+  (0.0ms) begin transaction
2346
+  (0.0ms) SAVEPOINT active_record_1
2347
+ SQL (0.2ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.523060"], ["updated_at", "2014-09-12 05:34:21.523060"]]
2348
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2349
+ Processing by FoosController#show as HTML
2350
+ Parameters: {"id"=>"1"}
2351
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2352
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.1ms)
2353
+  (0.5ms) rollback transaction
2354
+  (0.1ms) begin transaction
2355
+ Processing by FoosController#new as HTML
2356
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
2357
+  (0.1ms) rollback transaction
2358
+  (0.1ms) begin transaction
2359
+  (0.1ms) SAVEPOINT active_record_1
2360
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.537468"], ["updated_at", "2014-09-12 05:34:21.537468"]]
2361
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2362
+ Processing by FoosController#edit as HTML
2363
+ Parameters: {"id"=>"1"}
2364
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2365
+ Completed 200 OK in 5ms (Views: 3.4ms | ActiveRecord: 0.1ms)
2366
+  (0.6ms) rollback transaction
2367
+  (0.1ms) begin transaction
2368
+  (0.3ms) SELECT COUNT(*) FROM "foos"
2369
+ Processing by FoosController#create as HTML
2370
+ Parameters: {"foo"=>{"bar"=>"cool"}}
2371
+  (0.1ms) SAVEPOINT active_record_1
2372
+ SQL (0.9ms) 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
+  (1.0ms) RELEASE SAVEPOINT active_record_1
2374
+ Redirected to http://test.host/foos/1
2375
+ Completed 302 Found in 7ms (ActiveRecord: 2.0ms)
2376
+  (0.1ms) SELECT COUNT(*) FROM "foos"
2377
+  (0.4ms) rollback transaction
2378
+  (0.1ms) begin transaction
2379
+ Processing by FoosController#create as HTML
2380
+ Parameters: {"foo"=>{"bar"=>"cool"}}
2381
+  (0.1ms) SAVEPOINT active_record_1
2382
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2384
+ Redirected to http://test.host/foos/1
2385
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
2386
+  (0.5ms) rollback transaction
2387
+  (0.1ms) begin transaction
2388
+ Processing by FoosController#create as HTML
2389
+ Parameters: {"foo"=>{"bar"=>"cool"}}
2390
+  (0.1ms) SAVEPOINT active_record_1
2391
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.577230"], ["updated_at", "2014-09-12 05:34:21.577230"]]
2392
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2393
+ Redirected to http://test.host/foos/1
2394
+ Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
2395
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1
2396
+  (0.5ms) rollback transaction
2397
+  (0.1ms) begin transaction
2398
+ Processing by FoosController#create as HTML
2399
+ Parameters: {"foo"=>{"bar"=>""}}
2400
+  (0.1ms) SAVEPOINT active_record_1
2401
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2402
+ Completed 200 OK in 15ms (Views: 0.9ms | ActiveRecord: 0.1ms)
2403
+  (0.1ms) rollback transaction
2404
+  (0.1ms) begin transaction
2405
+ Processing by FoosController#create as HTML
2406
+ Parameters: {"foo"=>{"bar"=>""}}
2407
+  (0.1ms) SAVEPOINT active_record_1
2408
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2409
+ Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.1ms)
2410
+  (0.1ms) rollback transaction
2411
+  (0.0ms) begin transaction
2412
+  (0.0ms) SAVEPOINT active_record_1
2413
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.607084"], ["updated_at", "2014-09-12 05:34:21.607084"]]
2414
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2415
+ Processing by FoosController#update as HTML
2416
+ Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
2417
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2418
+  (0.1ms) SAVEPOINT active_record_1
2419
+ SQL (1.3ms) UPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1 [["bar", "yay"], ["updated_at", "2014-09-12 05:34:21.610480"]]
2420
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2421
+ Redirected to http://test.host/foos/1
2422
+ Completed 302 Found in 5ms (ActiveRecord: 1.5ms)
2423
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2424
+  (0.5ms) rollback transaction
2425
+  (0.1ms) begin transaction
2426
+  (0.0ms) SAVEPOINT active_record_1
2427
+ SQL (0.2ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.617582"], ["updated_at", "2014-09-12 05:34:21.617582"]]
2428
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2429
+ Processing by FoosController#update as HTML
2430
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
2431
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2432
+  (0.1ms) SAVEPOINT active_record_1
2433
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2434
+ Redirected to http://test.host/foos/1
2435
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
2436
+  (0.7ms) rollback transaction
2437
+  (0.1ms) begin transaction
2438
+  (0.1ms) SAVEPOINT active_record_1
2439
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.625446"], ["updated_at", "2014-09-12 05:34:21.625446"]]
2440
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2441
+ Processing by FoosController#update as HTML
2442
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
2443
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2444
+  (0.1ms) SAVEPOINT active_record_1
2445
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2446
+ Redirected to http://test.host/foos/1
2447
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
2448
+  (0.3ms) rollback transaction
2449
+  (0.1ms) begin transaction
2450
+  (0.1ms) SAVEPOINT active_record_1
2451
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.633289"], ["updated_at", "2014-09-12 05:34:21.633289"]]
2452
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2453
+ Processing by FoosController#update as HTML
2454
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
2455
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2456
+  (0.1ms) SAVEPOINT active_record_1
2457
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2458
+ Completed 200 OK in 4ms (Views: 1.0ms | ActiveRecord: 0.2ms)
2459
+  (0.4ms) rollback transaction
2460
+  (0.1ms) begin transaction
2461
+  (0.1ms) SAVEPOINT active_record_1
2462
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.644077"], ["updated_at", "2014-09-12 05:34:21.644077"]]
2463
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2464
+ Processing by FoosController#update as HTML
2465
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
2466
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2467
+  (0.0ms) SAVEPOINT active_record_1
2468
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2469
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
2470
+  (0.4ms) rollback transaction
2471
+  (0.1ms) begin transaction
2472
+  (0.1ms) SAVEPOINT active_record_1
2473
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 05:34:21.653122"], ["updated_at", "2014-09-12 05:34:21.653122"]]
2474
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2475
+  (0.1ms) SELECT COUNT(*) FROM "foos"
2476
+ Processing by FoosController#destroy as HTML
2477
+ Parameters: {"id"=>"1"}
2478
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2479
+  (0.1ms) SAVEPOINT active_record_1
2480
+ SQL (0.4ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
2481
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2482
+ Redirected to http://test.host/foos
2483
+ Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
2484
+  (0.1ms) SELECT COUNT(*) FROM "foos"
2485
+  (0.4ms) rollback transaction
2486
+  (0.1ms) begin transaction
2487
+  (0.0ms) SAVEPOINT active_record_1
2488
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2490
+ Processing by FoosController#destroy as HTML
2491
+ Parameters: {"id"=>"1"}
2492
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2493
+  (0.1ms) SAVEPOINT active_record_1
2494
+ SQL (0.3ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
2495
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2496
+ Redirected to http://test.host/foos
2497
+ Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
2498
+  (0.4ms) rollback transaction
2499
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2500
+  (0.1ms) 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
+  (0.1ms) rollback transaction
2505
+  (0.1ms) begin transaction
2506
+ Processing by DogController#two as HTML
2507
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
2508
+  (0.1ms) rollback transaction
2509
+  (0.1ms) begin transaction
2510
+ Processing by DogController#three as HTML
2511
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
2512
+  (0.1ms) rollback transaction
2513
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2514
+  (0.1ms) 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
+  (0.1ms) rollback transaction
2519
+  (0.1ms) begin transaction
2520
+ Processing by DogController#two as HTML
2521
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2522
+  (0.1ms) rollback transaction
2523
+  (0.1ms) begin transaction
2524
+ Processing by DogController#three as HTML
2525
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
2526
+  (0.1ms) rollback transaction
2527
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2528
+  (0.1ms) 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
+  (0.2ms) rollback transaction
2533
+  (0.1ms) begin transaction
2534
+ Processing by DogController#two as HTML
2535
+ Completed 200 OK in 5ms (Views: 4.3ms | ActiveRecord: 0.0ms)
2536
+  (0.1ms) rollback transaction
2537
+  (0.1ms) begin transaction
2538
+ Processing by DogController#three as HTML
2539
+ Completed 200 OK in 7ms (Views: 7.1ms | ActiveRecord: 0.0ms)
2540
+  (0.1ms) rollback transaction
2541
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2542
+  (0.1ms) 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
+  (0.1ms) rollback transaction
2547
+  (0.0ms) begin transaction
2548
+ Processing by DogController#two as HTML
2549
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2550
+  (0.1ms) rollback transaction
2551
+  (0.1ms) begin transaction
2552
+ Processing by DogController#three as HTML
2553
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2554
+  (0.1ms) rollback transaction
2555
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2556
+  (0.1ms) 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
+  (0.2ms) rollback transaction
2561
+  (0.1ms) begin transaction
2562
+ Processing by DogController#two as HTML
2563
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
2564
+  (0.1ms) rollback transaction
2565
+  (0.1ms) begin transaction
2566
+ Processing by DogController#three as HTML
2567
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2568
+  (0.1ms) rollback transaction
2569
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
2570
+  (0.1ms) 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
+  (0.1ms) rollback transaction
2575
+  (0.1ms) begin transaction
2576
+ Processing by CatController#two as HTML
2577
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2578
+  (0.1ms) rollback transaction
2579
+  (0.0ms) begin transaction
2580
+ Processing by CatController#three as HTML
2581
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2582
+  (0.1ms) rollback transaction
2583
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
2584
+  (0.1ms) 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
+  (0.1ms) rollback transaction
2589
+  (0.1ms) begin transaction
2590
+ Processing by CatController#two as HTML
2591
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2592
+  (0.1ms) rollback transaction
2593
+  (0.1ms) begin transaction
2594
+ Processing by CatController#three as HTML
2595
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2596
+  (0.1ms) rollback transaction
2597
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2598
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2599
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2600
+  (0.1ms) 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
+  (0.1ms) rollback transaction
2605
+  (0.1ms) begin transaction
2606
+ Processing by BunnyController#two as HTML
2607
+ Completed 500 Internal Server Error in 0ms
2608
+  (0.1ms) rollback transaction
2609
+  (0.0ms) begin transaction
2610
+ Processing by BunnyController#three as HTML
2611
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
2612
+  (0.1ms) rollback transaction
2613
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2614
+  (0.1ms) begin transaction
2615
+ Processing by BunnyController#one as HTML
2616
+ Completed 500 Internal Server Error in 0ms
2617
+  (0.1ms) rollback transaction
2618
+  (0.1ms) begin transaction
2619
+ Processing by BunnyController#two as HTML
2620
+ Completed 500 Internal Server Error in 0ms
2621
+  (0.1ms) rollback transaction
2622
+  (0.0ms) begin transaction
2623
+ Processing by BunnyController#three as HTML
2624
+ Completed 500 Internal Server Error in 0ms
2625
+  (0.1ms) rollback transaction
2626
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2627
+  (0.1ms) 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
+  (0.1ms) rollback transaction
2632
+  (0.1ms) begin transaction
2633
+ Processing by BunnyController#two as HTML
2634
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
2635
+  (0.1ms) rollback transaction
2636
+  (0.1ms) begin transaction
2637
+ Processing by BunnyController#three as HTML
2638
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
2639
+  (0.1ms) rollback transaction
2640
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2641
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
2642
+ ActiveRecord::SchemaMigration Load (0.9ms) SELECT "schema_migrations".* FROM "schema_migrations"
2643
+  (0.1ms) 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
+  (0.6ms) rollback transaction
2648
+  (0.1ms) begin transaction
2649
+ Processing by BunnyController#two as HTML
2650
+ Completed 500 Internal Server Error in 3ms
2651
+  (0.1ms) rollback transaction
2652
+  (0.1ms) begin transaction
2653
+ Processing by BunnyController#three as HTML
2654
+ Completed 500 Internal Server Error in 3ms
2655
+  (0.2ms) rollback transaction
2656
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2657
+  (0.1ms) 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
+  (0.1ms) rollback transaction
2662
+  (0.1ms) begin transaction
2663
+ Processing by BunnyController#two as HTML
2664
+ Completed 200 OK in 2ms (Views: 1.6ms | ActiveRecord: 0.0ms)
2665
+  (0.1ms) rollback transaction
2666
+  (0.0ms) begin transaction
2667
+ Processing by BunnyController#three as HTML
2668
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
2669
+  (0.1ms) rollback transaction
2670
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2671
+  (0.1ms) 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
+  (0.1ms) rollback transaction
2676
+  (0.1ms) begin transaction
2677
+ Processing by BunnyController#two as HTML
2678
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2679
+  (0.1ms) rollback transaction
2680
+  (0.1ms) begin transaction
2681
+ Processing by BunnyController#three as HTML
2682
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
2683
+  (0.1ms) rollback transaction
2684
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2685
+  (0.1ms) 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
+  (0.1ms) rollback transaction
2690
+  (0.1ms) begin transaction
2691
+ Processing by BunnyController#two as HTML
2692
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
2693
+  (0.1ms) rollback transaction
2694
+  (0.1ms) begin transaction
2695
+ Processing by BunnyController#three as HTML
2696
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
2697
+  (0.1ms) rollback transaction
2698
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2699
+  (0.1ms) 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
+  (0.1ms) rollback transaction
2704
+  (0.1ms) begin transaction
2705
+ Processing by BunnyController#two as HTML
2706
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2707
+  (0.1ms) rollback transaction
2708
+  (0.1ms) begin transaction
2709
+ Processing by BunnyController#three as HTML
2710
+ Completed 200 OK in 2ms (Views: 1.4ms | ActiveRecord: 0.0ms)
2711
+  (0.1ms) rollback transaction
2712
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
2713
+  (0.2ms) begin transaction
2714
+  (0.1ms) SAVEPOINT active_record_1
2715
+ SQL (1.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ AdminFoo Load (0.2ms) SELECT "admin_foos".* FROM "admin_foos"
2721
+  (1.0ms) rollback transaction
2722
+  (0.1ms) begin transaction
2723
+  (0.1ms) SAVEPOINT active_record_1
2724
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2726
+ Processing by AdminFoosController#show as HTML
2727
+ Parameters: {"id"=>"1"}
2728
+ AdminFoo Load (0.2ms) 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
+  (0.4ms) rollback transaction
2731
+  (0.1ms) 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
+  (0.1ms) rollback transaction
2736
+  (0.1ms) begin transaction
2737
+  (0.0ms) SAVEPOINT active_record_1
2738
+ SQL (0.2ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
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
+  (0.5ms) rollback transaction
2745
+  (0.0ms) begin transaction
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
+  (0.0ms) rollback transaction
2751
+  (0.0ms) begin transaction
2752
+  (0.0ms) SAVEPOINT active_record_1
2753
+ SQL (0.2ms) INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.413416"], ["updated_at", "2014-09-12 19:47:15.413416"]]
2754
+  (0.0ms) 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
+  (0.4ms) rollback transaction
2760
+  (0.1ms) begin transaction
2761
+  (0.1ms) SAVEPOINT active_record_1
2762
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.5ms) rollback transaction
2769
+  (0.1ms) begin transaction
2770
+ Processing by BunnyController#one as HTML
2771
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2772
+  (0.1ms) rollback transaction
2773
+  (0.1ms) begin transaction
2774
+ Processing by BunnyController#two as HTML
2775
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2776
+  (0.1ms) rollback transaction
2777
+  (0.1ms) begin transaction
2778
+ Processing by BunnyController#three as HTML
2779
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
2780
+  (0.1ms) rollback transaction
2781
+  (0.1ms) begin transaction
2782
+ Processing by CatController#one as HTML
2783
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
2784
+  (0.1ms) rollback transaction
2785
+  (0.1ms) begin transaction
2786
+ Processing by CatController#two as HTML
2787
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2788
+  (0.1ms) rollback transaction
2789
+  (0.1ms) begin transaction
2790
+ Processing by CatController#three as HTML
2791
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2792
+  (0.1ms) rollback transaction
2793
+  (0.1ms) begin transaction
2794
+ Processing by DogController#one as HTML
2795
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
2796
+  (0.1ms) rollback transaction
2797
+  (0.1ms) begin transaction
2798
+ Processing by DogController#two as HTML
2799
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
2800
+  (0.1ms) rollback transaction
2801
+  (0.0ms) begin transaction
2802
+ Processing by DogController#three as HTML
2803
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
2804
+  (0.1ms) rollback transaction
2805
+  (0.1ms) begin transaction
2806
+  (0.1ms) SAVEPOINT active_record_1
2807
+ SQL (0.7ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.492246"], ["updated_at", "2014-09-12 19:47:15.492246"]]
2808
+  (0.1ms) 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
+ Foo Load (0.2ms) SELECT "foos".* FROM "foos"
2812
+  (0.7ms) rollback transaction
2813
+  (0.1ms) begin transaction
2814
+  (0.1ms) SAVEPOINT active_record_1
2815
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.507417"], ["updated_at", "2014-09-12 19:47:15.507417"]]
2816
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2817
+ Processing by FoosController#show as HTML
2818
+ Parameters: {"id"=>"1"}
2819
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2820
+ Completed 200 OK in 3ms (Views: 1.6ms | ActiveRecord: 0.1ms)
2821
+  (0.4ms) rollback transaction
2822
+  (0.1ms) begin transaction
2823
+ Processing by FoosController#new as HTML
2824
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
2825
+  (0.1ms) rollback transaction
2826
+  (0.1ms) begin transaction
2827
+  (0.1ms) SAVEPOINT active_record_1
2828
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.522065"], ["updated_at", "2014-09-12 19:47:15.522065"]]
2829
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2830
+ Processing by FoosController#edit as HTML
2831
+ Parameters: {"id"=>"1"}
2832
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2833
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.1ms)
2834
+  (0.5ms) rollback transaction
2835
+  (0.1ms) begin transaction
2836
+  (0.2ms) SELECT COUNT(*) FROM "foos"
2837
+ Processing by FoosController#create as HTML
2838
+ Parameters: {"foo"=>{"bar"=>"cool"}}
2839
+  (0.1ms) SAVEPOINT active_record_1
2840
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2842
+ Redirected to http://test.host/foos/1
2843
+ Completed 302 Found in 4ms (ActiveRecord: 0.8ms)
2844
+  (0.1ms) SELECT COUNT(*) FROM "foos"
2845
+  (0.5ms) rollback transaction
2846
+  (0.1ms) begin transaction
2847
+ Processing by FoosController#create as HTML
2848
+ Parameters: {"foo"=>{"bar"=>"cool"}}
2849
+  (0.1ms) SAVEPOINT active_record_1
2850
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2852
+ Redirected to http://test.host/foos/1
2853
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
2854
+  (0.6ms) rollback transaction
2855
+  (0.1ms) begin transaction
2856
+ Processing by FoosController#create as HTML
2857
+ Parameters: {"foo"=>{"bar"=>"cool"}}
2858
+  (0.1ms) SAVEPOINT active_record_1
2859
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.555925"], ["updated_at", "2014-09-12 19:47:15.555925"]]
2860
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2861
+ Redirected to http://test.host/foos/1
2862
+ Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
2863
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1
2864
+  (0.5ms) rollback transaction
2865
+  (0.1ms) begin transaction
2866
+ Processing by FoosController#create as HTML
2867
+ Parameters: {"foo"=>{"bar"=>""}}
2868
+  (0.1ms) SAVEPOINT active_record_1
2869
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2870
+ Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.1ms)
2871
+  (0.1ms) rollback transaction
2872
+  (0.1ms) begin transaction
2873
+ Processing by FoosController#create as HTML
2874
+ Parameters: {"foo"=>{"bar"=>""}}
2875
+  (0.1ms) SAVEPOINT active_record_1
2876
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
2877
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
2878
+  (0.1ms) rollback transaction
2879
+  (0.1ms) begin transaction
2880
+  (0.0ms) SAVEPOINT active_record_1
2881
+ SQL (0.5ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.580944"], ["updated_at", "2014-09-12 19:47:15.580944"]]
2882
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2883
+ Processing by FoosController#update as HTML
2884
+ Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
2885
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2886
+  (0.1ms) SAVEPOINT active_record_1
2887
+ SQL (2.0ms) UPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1 [["bar", "yay"], ["updated_at", "2014-09-12 19:47:15.585951"]]
2888
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2889
+ Redirected to http://test.host/foos/1
2890
+ Completed 302 Found in 6ms (ActiveRecord: 2.2ms)
2891
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2892
+  (0.6ms) rollback transaction
2893
+  (0.1ms) begin transaction
2894
+  (0.1ms) SAVEPOINT active_record_1
2895
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.594375"], ["updated_at", "2014-09-12 19:47:15.594375"]]
2896
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2897
+ Processing by FoosController#update as HTML
2898
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
2899
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2900
+  (0.0ms) SAVEPOINT active_record_1
2901
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2902
+ Redirected to http://test.host/foos/1
2903
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
2904
+  (0.5ms) rollback transaction
2905
+  (0.1ms) begin transaction
2906
+  (0.1ms) SAVEPOINT active_record_1
2907
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.601189"], ["updated_at", "2014-09-12 19:47:15.601189"]]
2908
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2909
+ Processing by FoosController#update as HTML
2910
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
2911
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2912
+  (0.1ms) SAVEPOINT active_record_1
2913
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2914
+ Redirected to http://test.host/foos/1
2915
+ Completed 302 Found in 3ms (ActiveRecord: 0.3ms)
2916
+  (0.6ms) rollback transaction
2917
+  (0.1ms) begin transaction
2918
+  (0.1ms) SAVEPOINT active_record_1
2919
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.611433"], ["updated_at", "2014-09-12 19:47:15.611433"]]
2920
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2921
+ Processing by FoosController#update as HTML
2922
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
2923
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2924
+  (0.1ms) SAVEPOINT active_record_1
2925
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2926
+ Completed 200 OK in 4ms (Views: 0.9ms | ActiveRecord: 0.2ms)
2927
+  (0.6ms) rollback transaction
2928
+  (0.1ms) begin transaction
2929
+  (0.1ms) SAVEPOINT active_record_1
2930
+ SQL (0.5ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.620471"], ["updated_at", "2014-09-12 19:47:15.620471"]]
2931
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2932
+ Processing by FoosController#update as HTML
2933
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
2934
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2935
+  (0.1ms) SAVEPOINT active_record_1
2936
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
2937
+ Completed 200 OK in 3ms (Views: 0.8ms | ActiveRecord: 0.2ms)
2938
+  (0.6ms) rollback transaction
2939
+  (0.1ms) begin transaction
2940
+  (0.1ms) SAVEPOINT active_record_1
2941
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:47:15.629426"], ["updated_at", "2014-09-12 19:47:15.629426"]]
2942
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2943
+  (0.1ms) SELECT COUNT(*) FROM "foos"
2944
+ Processing by FoosController#destroy as HTML
2945
+ Parameters: {"id"=>"1"}
2946
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2947
+  (0.0ms) SAVEPOINT active_record_1
2948
+ SQL (0.4ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
2949
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2950
+ Redirected to http://test.host/foos
2951
+ Completed 302 Found in 2ms (ActiveRecord: 0.6ms)
2952
+  (0.1ms) SELECT COUNT(*) FROM "foos"
2953
+  (0.6ms) rollback transaction
2954
+  (0.1ms) begin transaction
2955
+  (0.1ms) SAVEPOINT active_record_1
2956
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2958
+ Processing by FoosController#destroy as HTML
2959
+ Parameters: {"id"=>"1"}
2960
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
2961
+  (0.1ms) SAVEPOINT active_record_1
2962
+ SQL (0.4ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
2963
+  (0.1ms) RELEASE SAVEPOINT active_record_1
2964
+ Redirected to http://test.host/foos
2965
+ Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
2966
+  (0.6ms) rollback transaction
2967
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2968
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
2969
+  (0.1ms) begin transaction
2970
+  (0.1ms) SAVEPOINT active_record_1
2971
+ SQL (1.0ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ AdminFoo Load (0.1ms) SELECT "admin_foos".* FROM "admin_foos"
2977
+  (0.6ms) rollback transaction
2978
+  (0.1ms) begin transaction
2979
+  (0.0ms) SAVEPOINT active_record_1
2980
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
2982
+ Processing by AdminFoosController#show as HTML
2983
+ Parameters: {"id"=>"1"}
2984
+ AdminFoo Load (0.2ms) 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
+  (0.6ms) rollback transaction
2987
+  (0.1ms) 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
+  (0.1ms) rollback transaction
2992
+  (0.1ms) begin transaction
2993
+  (0.1ms) SAVEPOINT active_record_1
2994
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.6ms) rollback transaction
3001
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
3007
+  (0.1ms) begin transaction
3008
+  (0.1ms) SAVEPOINT active_record_1
3009
+ SQL (0.5ms) INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.156280"], ["updated_at", "2014-09-12 19:51:56.156280"]]
3010
+  (0.1ms) 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
+  (0.6ms) rollback transaction
3016
+  (0.1ms) begin transaction
3017
+  (0.1ms) SAVEPOINT active_record_1
3018
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.5ms) rollback transaction
3025
+  (0.1ms) begin transaction
3026
+ Processing by BunnyController#one as HTML
3027
+ Completed 200 OK in 4ms (Views: 4.1ms | ActiveRecord: 0.0ms)
3028
+  (0.1ms) rollback transaction
3029
+  (0.1ms) begin transaction
3030
+ Processing by BunnyController#two as HTML
3031
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
3032
+  (0.1ms) rollback transaction
3033
+  (0.1ms) begin transaction
3034
+ Processing by BunnyController#three as HTML
3035
+ Completed 200 OK in 3ms (Views: 2.7ms | ActiveRecord: 0.0ms)
3036
+  (0.1ms) rollback transaction
3037
+  (0.1ms) begin transaction
3038
+ Processing by CatController#one as HTML
3039
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
3040
+  (0.1ms) rollback transaction
3041
+  (0.1ms) begin transaction
3042
+ Processing by CatController#two as HTML
3043
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3044
+  (0.1ms) rollback transaction
3045
+  (0.1ms) begin transaction
3046
+ Processing by CatController#three as HTML
3047
+ Completed 200 OK in 2ms (Views: 2.3ms | ActiveRecord: 0.0ms)
3048
+  (0.1ms) rollback transaction
3049
+  (0.1ms) begin transaction
3050
+ Processing by DogController#one as HTML
3051
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
3052
+  (0.1ms) rollback transaction
3053
+  (0.1ms) begin transaction
3054
+ Processing by DogController#two as HTML
3055
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3056
+  (0.1ms) rollback transaction
3057
+  (0.0ms) begin transaction
3058
+ Processing by DogController#three as HTML
3059
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3060
+  (0.1ms) rollback transaction
3061
+  (0.1ms) begin transaction
3062
+  (0.1ms) SAVEPOINT active_record_1
3063
+ SQL (0.8ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.229937"], ["updated_at", "2014-09-12 19:51:56.229937"]]
3064
+  (0.1ms) 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
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos"
3068
+  (0.6ms) rollback transaction
3069
+  (0.1ms) begin transaction
3070
+  (0.1ms) SAVEPOINT active_record_1
3071
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.262916"], ["updated_at", "2014-09-12 19:51:56.262916"]]
3072
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3073
+ Processing by FoosController#show as HTML
3074
+ Parameters: {"id"=>"1"}
3075
+ Foo Load (0.2ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3076
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.2ms)
3077
+  (0.5ms) rollback transaction
3078
+  (0.1ms) begin transaction
3079
+ Processing by FoosController#new as HTML
3080
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3081
+  (0.1ms) rollback transaction
3082
+  (0.0ms) begin transaction
3083
+  (0.0ms) SAVEPOINT active_record_1
3084
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.277243"], ["updated_at", "2014-09-12 19:51:56.277243"]]
3085
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3086
+ Processing by FoosController#edit as HTML
3087
+ Parameters: {"id"=>"1"}
3088
+ Foo Load (0.0ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3089
+ Completed 200 OK in 3ms (Views: 2.0ms | ActiveRecord: 0.0ms)
3090
+  (0.8ms) rollback transaction
3091
+  (0.1ms) begin transaction
3092
+  (0.2ms) SELECT COUNT(*) FROM "foos"
3093
+ Processing by FoosController#create as HTML
3094
+ Parameters: {"foo"=>{"bar"=>"cool"}}
3095
+  (0.1ms) SAVEPOINT active_record_1
3096
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3098
+ Redirected to http://test.host/foos/1
3099
+ Completed 302 Found in 4ms (ActiveRecord: 0.5ms)
3100
+  (0.1ms) SELECT COUNT(*) FROM "foos"
3101
+  (0.5ms) rollback transaction
3102
+  (0.1ms) begin transaction
3103
+ Processing by FoosController#create as HTML
3104
+ Parameters: {"foo"=>{"bar"=>"cool"}}
3105
+  (0.1ms) SAVEPOINT active_record_1
3106
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3108
+ Redirected to http://test.host/foos/1
3109
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
3110
+  (0.5ms) rollback transaction
3111
+  (0.1ms) begin transaction
3112
+ Processing by FoosController#create as HTML
3113
+ Parameters: {"foo"=>{"bar"=>"cool"}}
3114
+  (0.1ms) SAVEPOINT active_record_1
3115
+ SQL (0.6ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.306617"], ["updated_at", "2014-09-12 19:51:56.306617"]]
3116
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3117
+ Redirected to http://test.host/foos/1
3118
+ Completed 302 Found in 4ms (ActiveRecord: 0.8ms)
3119
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1
3120
+  (0.5ms) rollback transaction
3121
+  (0.1ms) begin transaction
3122
+ Processing by FoosController#create as HTML
3123
+ Parameters: {"foo"=>{"bar"=>""}}
3124
+  (0.1ms) SAVEPOINT active_record_1
3125
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3126
+ Completed 200 OK in 10ms (Views: 1.1ms | ActiveRecord: 0.1ms)
3127
+  (0.1ms) rollback transaction
3128
+  (0.1ms) begin transaction
3129
+ Processing by FoosController#create as HTML
3130
+ Parameters: {"foo"=>{"bar"=>""}}
3131
+  (0.1ms) SAVEPOINT active_record_1
3132
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3133
+ Completed 200 OK in 3ms (Views: 1.0ms | ActiveRecord: 0.1ms)
3134
+  (0.1ms) rollback transaction
3135
+  (0.1ms) begin transaction
3136
+  (0.1ms) SAVEPOINT active_record_1
3137
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.332081"], ["updated_at", "2014-09-12 19:51:56.332081"]]
3138
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3139
+ Processing by FoosController#update as HTML
3140
+ Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
3141
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3142
+  (0.1ms) SAVEPOINT active_record_1
3143
+ SQL (1.2ms) UPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1 [["bar", "yay"], ["updated_at", "2014-09-12 19:51:56.336399"]]
3144
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3145
+ Redirected to http://test.host/foos/1
3146
+ Completed 302 Found in 5ms (ActiveRecord: 1.4ms)
3147
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3148
+  (0.6ms) rollback transaction
3149
+  (0.1ms) begin transaction
3150
+  (0.0ms) SAVEPOINT active_record_1
3151
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.342928"], ["updated_at", "2014-09-12 19:51:56.342928"]]
3152
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3153
+ Processing by FoosController#update as HTML
3154
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
3155
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3156
+  (0.0ms) SAVEPOINT active_record_1
3157
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3158
+ Redirected to http://test.host/foos/1
3159
+ Completed 302 Found in 2ms (ActiveRecord: 0.1ms)
3160
+  (0.5ms) rollback transaction
3161
+  (0.0ms) begin transaction
3162
+  (0.0ms) SAVEPOINT active_record_1
3163
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.348890"], ["updated_at", "2014-09-12 19:51:56.348890"]]
3164
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3165
+ Processing by FoosController#update as HTML
3166
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
3167
+ Foo Load (0.0ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3168
+  (0.0ms) SAVEPOINT active_record_1
3169
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3170
+ Redirected to http://test.host/foos/1
3171
+ Completed 302 Found in 1ms (ActiveRecord: 0.1ms)
3172
+  (0.4ms) rollback transaction
3173
+  (0.1ms) begin transaction
3174
+  (0.0ms) SAVEPOINT active_record_1
3175
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.354656"], ["updated_at", "2014-09-12 19:51:56.354656"]]
3176
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3177
+ Processing by FoosController#update as HTML
3178
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
3179
+ Foo Load (0.0ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3180
+  (0.0ms) SAVEPOINT active_record_1
3181
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
3182
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
3183
+  (0.4ms) rollback transaction
3184
+  (0.1ms) begin transaction
3185
+  (0.0ms) SAVEPOINT active_record_1
3186
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.361086"], ["updated_at", "2014-09-12 19:51:56.361086"]]
3187
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3188
+ Processing by FoosController#update as HTML
3189
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
3190
+ Foo Load (0.0ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3191
+  (0.0ms) SAVEPOINT active_record_1
3192
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
3193
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
3194
+  (0.4ms) rollback transaction
3195
+  (0.1ms) begin transaction
3196
+  (0.0ms) SAVEPOINT active_record_1
3197
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:51:56.367852"], ["updated_at", "2014-09-12 19:51:56.367852"]]
3198
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3199
+  (0.1ms) SELECT COUNT(*) FROM "foos"
3200
+ Processing by FoosController#destroy as HTML
3201
+ Parameters: {"id"=>"1"}
3202
+ Foo Load (0.0ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3203
+  (0.0ms) SAVEPOINT active_record_1
3204
+ SQL (0.3ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
3205
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3206
+ Redirected to http://test.host/foos
3207
+ Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
3208
+  (0.1ms) SELECT COUNT(*) FROM "foos"
3209
+  (0.6ms) rollback transaction
3210
+  (0.1ms) begin transaction
3211
+  (0.0ms) SAVEPOINT active_record_1
3212
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3214
+ Processing by FoosController#destroy as HTML
3215
+ Parameters: {"id"=>"1"}
3216
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3217
+  (0.0ms) SAVEPOINT active_record_1
3218
+ SQL (0.3ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
3219
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3220
+ Redirected to http://test.host/foos
3221
+ Completed 302 Found in 2ms (ActiveRecord: 0.4ms)
3222
+  (0.5ms) rollback transaction
3223
+ ActiveRecord::SchemaMigration Load (0.4ms) SELECT "schema_migrations".* FROM "schema_migrations"
3224
+  (0.1ms) begin transaction
3225
+  (0.1ms) SAVEPOINT active_record_1
3226
+ SQL (1.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ AdminFoo Load (0.1ms) SELECT "admin_foos".* FROM "admin_foos"
3232
+  (0.6ms) rollback transaction
3233
+  (0.1ms) begin transaction
3234
+  (0.1ms) SAVEPOINT active_record_1
3235
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3237
+ Processing by AdminFoosController#show as HTML
3238
+ Parameters: {"id"=>"1"}
3239
+ AdminFoo Load (0.2ms) 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
+  (0.7ms) rollback transaction
3242
+  (0.1ms) 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
+  (0.2ms) rollback transaction
3247
+  (0.1ms) begin transaction
3248
+  (0.1ms) SAVEPOINT active_record_1
3249
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.6ms) rollback transaction
3256
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
3262
+  (0.1ms) begin transaction
3263
+  (0.1ms) SAVEPOINT active_record_1
3264
+ SQL (0.6ms) INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.115636"], ["updated_at", "2014-09-12 19:58:16.115636"]]
3265
+  (0.1ms) 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
+  (0.6ms) rollback transaction
3271
+  (0.1ms) begin transaction
3272
+  (0.1ms) SAVEPOINT active_record_1
3273
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.5ms) rollback transaction
3280
+  (0.1ms) begin transaction
3281
+ Processing by BunnyController#one as HTML
3282
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
3283
+  (0.1ms) rollback transaction
3284
+  (0.1ms) begin transaction
3285
+ Processing by BunnyController#two as HTML
3286
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
3287
+  (0.1ms) rollback transaction
3288
+  (0.1ms) begin transaction
3289
+ Processing by BunnyController#three as HTML
3290
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
3291
+  (0.1ms) rollback transaction
3292
+  (0.1ms) begin transaction
3293
+ Processing by CatController#one as HTML
3294
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
3295
+  (0.1ms) rollback transaction
3296
+  (0.1ms) begin transaction
3297
+ Processing by CatController#two as HTML
3298
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
3299
+  (0.2ms) rollback transaction
3300
+  (0.1ms) begin transaction
3301
+ Processing by CatController#three as HTML
3302
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
3303
+  (0.1ms) rollback transaction
3304
+  (0.1ms) begin transaction
3305
+ Processing by DogController#one as HTML
3306
+ Completed 200 OK in 4ms (Views: 3.2ms | ActiveRecord: 0.0ms)
3307
+  (0.1ms) rollback transaction
3308
+  (0.1ms) begin transaction
3309
+ Processing by DogController#two as HTML
3310
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
3311
+  (0.1ms) rollback transaction
3312
+  (0.1ms) begin transaction
3313
+ Processing by DogController#three as HTML
3314
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
3315
+  (0.1ms) rollback transaction
3316
+  (0.1ms) begin transaction
3317
+  (0.1ms) SAVEPOINT active_record_1
3318
+ SQL (0.8ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.195051"], ["updated_at", "2014-09-12 19:58:16.195051"]]
3319
+  (0.1ms) 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
+ Foo Load (0.2ms) SELECT "foos".* FROM "foos"
3323
+  (1.0ms) rollback transaction
3324
+  (0.1ms) begin transaction
3325
+  (0.1ms) SAVEPOINT active_record_1
3326
+ SQL (0.5ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.214955"], ["updated_at", "2014-09-12 19:58:16.214955"]]
3327
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3328
+ Processing by FoosController#show as HTML
3329
+ Parameters: {"id"=>"1"}
3330
+ Foo Load (0.2ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3331
+ Completed 200 OK in 3ms (Views: 1.9ms | ActiveRecord: 0.2ms)
3332
+  (0.5ms) rollback transaction
3333
+  (0.1ms) begin transaction
3334
+ Processing by FoosController#new as HTML
3335
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
3336
+  (0.1ms) rollback transaction
3337
+  (0.1ms) begin transaction
3338
+  (0.1ms) SAVEPOINT active_record_1
3339
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.231737"], ["updated_at", "2014-09-12 19:58:16.231737"]]
3340
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3341
+ Processing by FoosController#edit as HTML
3342
+ Parameters: {"id"=>"1"}
3343
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3344
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
3345
+  (0.6ms) rollback transaction
3346
+  (0.1ms) begin transaction
3347
+  (0.2ms) SELECT COUNT(*) FROM "foos"
3348
+ Processing by FoosController#create as HTML
3349
+ Parameters: {"foo"=>{"bar"=>"cool"}}
3350
+  (0.1ms) SAVEPOINT active_record_1
3351
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3353
+ Redirected to http://test.host/foos/1
3354
+ Completed 302 Found in 5ms (ActiveRecord: 0.7ms)
3355
+  (0.1ms) SELECT COUNT(*) FROM "foos"
3356
+  (0.6ms) rollback transaction
3357
+  (0.1ms) begin transaction
3358
+ Processing by FoosController#create as HTML
3359
+ Parameters: {"foo"=>{"bar"=>"cool"}}
3360
+  (0.1ms) SAVEPOINT active_record_1
3361
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3363
+ Redirected to http://test.host/foos/1
3364
+ Completed 302 Found in 10ms (ActiveRecord: 0.7ms)
3365
+  (0.7ms) rollback transaction
3366
+  (0.1ms) begin transaction
3367
+ Processing by FoosController#create as HTML
3368
+ Parameters: {"foo"=>{"bar"=>"cool"}}
3369
+  (0.1ms) SAVEPOINT active_record_1
3370
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.278563"], ["updated_at", "2014-09-12 19:58:16.278563"]]
3371
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3372
+ Redirected to http://test.host/foos/1
3373
+ Completed 302 Found in 4ms (ActiveRecord: 0.6ms)
3374
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1
3375
+  (0.5ms) rollback transaction
3376
+  (0.1ms) begin transaction
3377
+ Processing by FoosController#create as HTML
3378
+ Parameters: {"foo"=>{"bar"=>""}}
3379
+  (0.1ms) SAVEPOINT active_record_1
3380
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3381
+ Completed 200 OK in 11ms (Views: 1.0ms | ActiveRecord: 0.2ms)
3382
+  (0.1ms) rollback transaction
3383
+  (0.1ms) begin transaction
3384
+ Processing by FoosController#create as HTML
3385
+ Parameters: {"foo"=>{"bar"=>""}}
3386
+  (0.1ms) SAVEPOINT active_record_1
3387
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
3388
+ Completed 200 OK in 2ms (Views: 0.7ms | ActiveRecord: 0.1ms)
3389
+  (0.0ms) rollback transaction
3390
+  (0.0ms) begin transaction
3391
+  (0.0ms) SAVEPOINT active_record_1
3392
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.304565"], ["updated_at", "2014-09-12 19:58:16.304565"]]
3393
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3394
+ Processing by FoosController#update as HTML
3395
+ Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
3396
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3397
+  (0.0ms) SAVEPOINT active_record_1
3398
+ SQL (1.5ms) UPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1 [["bar", "yay"], ["updated_at", "2014-09-12 19:58:16.307876"]]
3399
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3400
+ Redirected to http://test.host/foos/1
3401
+ Completed 302 Found in 5ms (ActiveRecord: 1.7ms)
3402
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3403
+  (0.5ms) rollback transaction
3404
+  (0.1ms) begin transaction
3405
+  (0.1ms) SAVEPOINT active_record_1
3406
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.316131"], ["updated_at", "2014-09-12 19:58:16.316131"]]
3407
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3408
+ Processing by FoosController#update as HTML
3409
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
3410
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3411
+  (0.1ms) SAVEPOINT active_record_1
3412
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3413
+ Redirected to http://test.host/foos/1
3414
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
3415
+  (0.5ms) rollback transaction
3416
+  (0.1ms) begin transaction
3417
+  (0.1ms) SAVEPOINT active_record_1
3418
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.323336"], ["updated_at", "2014-09-12 19:58:16.323336"]]
3419
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3420
+ Processing by FoosController#update as HTML
3421
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
3422
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3423
+  (0.1ms) SAVEPOINT active_record_1
3424
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3425
+ Redirected to http://test.host/foos/1
3426
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
3427
+  (0.5ms) rollback transaction
3428
+  (0.1ms) begin transaction
3429
+  (0.0ms) SAVEPOINT active_record_1
3430
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.331016"], ["updated_at", "2014-09-12 19:58:16.331016"]]
3431
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3432
+ Processing by FoosController#update as HTML
3433
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
3434
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3435
+  (0.1ms) SAVEPOINT active_record_1
3436
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3437
+ Completed 200 OK in 5ms (Views: 1.5ms | ActiveRecord: 0.3ms)
3438
+  (0.7ms) rollback transaction
3439
+  (0.1ms) begin transaction
3440
+  (0.1ms) SAVEPOINT active_record_1
3441
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.341164"], ["updated_at", "2014-09-12 19:58:16.341164"]]
3442
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3443
+ Processing by FoosController#update as HTML
3444
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
3445
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3446
+  (0.1ms) SAVEPOINT active_record_1
3447
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3448
+ Completed 200 OK in 4ms (Views: 0.8ms | ActiveRecord: 0.2ms)
3449
+  (0.5ms) rollback transaction
3450
+  (0.1ms) begin transaction
3451
+  (0.1ms) SAVEPOINT active_record_1
3452
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:16.350649"], ["updated_at", "2014-09-12 19:58:16.350649"]]
3453
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3454
+  (0.1ms) SELECT COUNT(*) FROM "foos"
3455
+ Processing by FoosController#destroy as HTML
3456
+ Parameters: {"id"=>"1"}
3457
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3458
+  (0.1ms) SAVEPOINT active_record_1
3459
+ SQL (0.4ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
3460
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3461
+ Redirected to http://test.host/foos
3462
+ Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
3463
+  (0.1ms) SELECT COUNT(*) FROM "foos"
3464
+  (0.5ms) rollback transaction
3465
+  (0.1ms) begin transaction
3466
+  (0.1ms) SAVEPOINT active_record_1
3467
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3469
+ Processing by FoosController#destroy as HTML
3470
+ Parameters: {"id"=>"1"}
3471
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3472
+  (0.1ms) SAVEPOINT active_record_1
3473
+ SQL (0.4ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
3474
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3475
+ Redirected to http://test.host/foos
3476
+ Completed 302 Found in 2ms (ActiveRecord: 0.6ms)
3477
+  (0.5ms) rollback transaction
3478
+  (0.1ms) begin transaction
3479
+ Processing by SquirrelController#one as HTML
3480
+ Completed 200 OK in 4ms (Views: 3.4ms | ActiveRecord: 0.0ms)
3481
+  (0.1ms) rollback transaction
3482
+  (0.1ms) begin transaction
3483
+ Processing by SquirrelController#two as HTML
3484
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
3485
+  (0.1ms) rollback transaction
3486
+  (0.1ms) begin transaction
3487
+ Processing by SquirrelController#three as HTML
3488
+ Completed 200 OK in 2ms (Views: 2.2ms | ActiveRecord: 0.0ms)
3489
+  (0.1ms) rollback transaction
3490
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
3491
+  (0.1ms) begin transaction
3492
+  (0.1ms) SAVEPOINT active_record_1
3493
+ SQL (1.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ AdminFoo Load (0.1ms) SELECT "admin_foos".* FROM "admin_foos"
3499
+  (0.5ms) rollback transaction
3500
+  (0.1ms) begin transaction
3501
+  (0.0ms) SAVEPOINT active_record_1
3502
+ SQL (0.3ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3504
+ Processing by AdminFoosController#show as HTML
3505
+ Parameters: {"id"=>"1"}
3506
+ AdminFoo Load (0.2ms) 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
+  (0.7ms) rollback transaction
3509
+  (0.1ms) 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
+  (0.1ms) rollback transaction
3514
+  (0.1ms) begin transaction
3515
+  (0.0ms) SAVEPOINT active_record_1
3516
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.6ms) rollback transaction
3523
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
3529
+  (0.1ms) begin transaction
3530
+  (0.1ms) SAVEPOINT active_record_1
3531
+ SQL (0.4ms) INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.751459"], ["updated_at", "2014-09-12 19:58:50.751459"]]
3532
+  (0.1ms) 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
+  (0.6ms) rollback transaction
3538
+  (0.1ms) begin transaction
3539
+  (0.0ms) SAVEPOINT active_record_1
3540
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.6ms) rollback transaction
3547
+  (0.1ms) begin transaction
3548
+ Processing by BunnyController#one as HTML
3549
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
3550
+  (0.1ms) rollback transaction
3551
+  (0.1ms) begin transaction
3552
+ Processing by BunnyController#two as HTML
3553
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3554
+  (0.1ms) rollback transaction
3555
+  (0.1ms) begin transaction
3556
+ Processing by BunnyController#three as HTML
3557
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
3558
+  (0.1ms) rollback transaction
3559
+  (0.2ms) begin transaction
3560
+ Processing by CatController#one as HTML
3561
+ Completed 200 OK in 3ms (Views: 2.9ms | ActiveRecord: 0.0ms)
3562
+  (0.1ms) rollback transaction
3563
+  (0.1ms) begin transaction
3564
+ Processing by CatController#two as HTML
3565
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
3566
+  (0.1ms) rollback transaction
3567
+  (0.1ms) begin transaction
3568
+ Processing by CatController#three as HTML
3569
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
3570
+  (0.1ms) rollback transaction
3571
+  (0.1ms) begin transaction
3572
+ Processing by DogController#one as HTML
3573
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
3574
+  (0.1ms) rollback transaction
3575
+  (0.1ms) begin transaction
3576
+ Processing by DogController#two as HTML
3577
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
3578
+  (0.1ms) rollback transaction
3579
+  (0.1ms) begin transaction
3580
+ Processing by DogController#three as HTML
3581
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
3582
+  (0.1ms) rollback transaction
3583
+  (0.1ms) begin transaction
3584
+  (0.0ms) SAVEPOINT active_record_1
3585
+ SQL (0.7ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.829488"], ["updated_at", "2014-09-12 19:58:50.829488"]]
3586
+  (0.1ms) 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
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos"
3590
+  (0.5ms) rollback transaction
3591
+  (0.1ms) begin transaction
3592
+  (0.1ms) SAVEPOINT active_record_1
3593
+ SQL (0.8ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.840479"], ["updated_at", "2014-09-12 19:58:50.840479"]]
3594
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3595
+ Processing by FoosController#show as HTML
3596
+ Parameters: {"id"=>"1"}
3597
+ Foo Load (0.2ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3598
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.2ms)
3599
+  (0.6ms) rollback transaction
3600
+  (0.1ms) begin transaction
3601
+ Processing by FoosController#new as HTML
3602
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
3603
+  (0.1ms) rollback transaction
3604
+  (0.1ms) begin transaction
3605
+  (0.1ms) SAVEPOINT active_record_1
3606
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.859640"], ["updated_at", "2014-09-12 19:58:50.859640"]]
3607
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3608
+ Processing by FoosController#edit as HTML
3609
+ Parameters: {"id"=>"1"}
3610
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3611
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.1ms)
3612
+  (0.5ms) rollback transaction
3613
+  (0.1ms) begin transaction
3614
+  (0.2ms) SELECT COUNT(*) FROM "foos"
3615
+ Processing by FoosController#create as HTML
3616
+ Parameters: {"foo"=>{"bar"=>"cool"}}
3617
+  (0.1ms) SAVEPOINT active_record_1
3618
+ SQL (0.6ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3620
+ Redirected to http://test.host/foos/1
3621
+ Completed 302 Found in 4ms (ActiveRecord: 0.7ms)
3622
+  (0.1ms) SELECT COUNT(*) FROM "foos"
3623
+  (0.6ms) rollback transaction
3624
+  (0.1ms) begin transaction
3625
+ Processing by FoosController#create as HTML
3626
+ Parameters: {"foo"=>{"bar"=>"cool"}}
3627
+  (0.1ms) SAVEPOINT active_record_1
3628
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3630
+ Redirected to http://test.host/foos/1
3631
+ Completed 302 Found in 4ms (ActiveRecord: 0.6ms)
3632
+  (0.6ms) rollback transaction
3633
+  (0.1ms) begin transaction
3634
+ Processing by FoosController#create as HTML
3635
+ Parameters: {"foo"=>{"bar"=>"cool"}}
3636
+  (0.1ms) SAVEPOINT active_record_1
3637
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.892354"], ["updated_at", "2014-09-12 19:58:50.892354"]]
3638
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3639
+ Redirected to http://test.host/foos/1
3640
+ Completed 302 Found in 3ms (ActiveRecord: 0.5ms)
3641
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1
3642
+  (0.5ms) rollback transaction
3643
+  (0.1ms) begin transaction
3644
+ Processing by FoosController#create as HTML
3645
+ Parameters: {"foo"=>{"bar"=>""}}
3646
+  (0.1ms) SAVEPOINT active_record_1
3647
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3648
+ Completed 200 OK in 9ms (Views: 0.9ms | ActiveRecord: 0.1ms)
3649
+  (0.1ms) rollback transaction
3650
+  (0.1ms) begin transaction
3651
+ Processing by FoosController#create as HTML
3652
+ Parameters: {"foo"=>{"bar"=>""}}
3653
+  (0.1ms) SAVEPOINT active_record_1
3654
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3655
+ Completed 200 OK in 2ms (Views: 0.8ms | ActiveRecord: 0.1ms)
3656
+  (0.1ms) rollback transaction
3657
+  (0.1ms) begin transaction
3658
+  (0.1ms) SAVEPOINT active_record_1
3659
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.915042"], ["updated_at", "2014-09-12 19:58:50.915042"]]
3660
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3661
+ Processing by FoosController#update as HTML
3662
+ Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
3663
+ Foo Load (0.0ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3664
+  (0.0ms) SAVEPOINT active_record_1
3665
+ SQL (1.2ms) UPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1 [["bar", "yay"], ["updated_at", "2014-09-12 19:58:50.918628"]]
3666
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3667
+ Redirected to http://test.host/foos/1
3668
+ Completed 302 Found in 4ms (ActiveRecord: 1.4ms)
3669
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3670
+  (0.6ms) rollback transaction
3671
+  (0.1ms) begin transaction
3672
+  (0.0ms) SAVEPOINT active_record_1
3673
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.925001"], ["updated_at", "2014-09-12 19:58:50.925001"]]
3674
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3675
+ Processing by FoosController#update as HTML
3676
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
3677
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3678
+  (0.1ms) SAVEPOINT active_record_1
3679
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3680
+ Redirected to http://test.host/foos/1
3681
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
3682
+  (0.6ms) rollback transaction
3683
+  (0.1ms) begin transaction
3684
+  (0.1ms) SAVEPOINT active_record_1
3685
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.932770"], ["updated_at", "2014-09-12 19:58:50.932770"]]
3686
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3687
+ Processing by FoosController#update as HTML
3688
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
3689
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3690
+  (0.1ms) SAVEPOINT active_record_1
3691
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3692
+ Redirected to http://test.host/foos/1
3693
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
3694
+  (0.6ms) rollback transaction
3695
+  (0.1ms) begin transaction
3696
+  (0.1ms) SAVEPOINT active_record_1
3697
+ SQL (0.6ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.941143"], ["updated_at", "2014-09-12 19:58:50.941143"]]
3698
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3699
+ Processing by FoosController#update as HTML
3700
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
3701
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3702
+  (0.1ms) SAVEPOINT active_record_1
3703
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3704
+ Completed 200 OK in 4ms (Views: 1.0ms | ActiveRecord: 0.2ms)
3705
+  (0.6ms) rollback transaction
3706
+  (0.1ms) begin transaction
3707
+  (0.0ms) SAVEPOINT active_record_1
3708
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.951495"], ["updated_at", "2014-09-12 19:58:50.951495"]]
3709
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3710
+ Processing by FoosController#update as HTML
3711
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
3712
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3713
+  (0.0ms) SAVEPOINT active_record_1
3714
+  (0.0ms) ROLLBACK TO SAVEPOINT active_record_1
3715
+ Completed 200 OK in 3ms (Views: 0.7ms | ActiveRecord: 0.1ms)
3716
+  (0.6ms) rollback transaction
3717
+  (0.1ms) begin transaction
3718
+  (0.1ms) SAVEPOINT active_record_1
3719
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:58:50.959620"], ["updated_at", "2014-09-12 19:58:50.959620"]]
3720
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3721
+  (0.1ms) SELECT COUNT(*) FROM "foos"
3722
+ Processing by FoosController#destroy as HTML
3723
+ Parameters: {"id"=>"1"}
3724
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3725
+  (0.1ms) SAVEPOINT active_record_1
3726
+ SQL (0.4ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
3727
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3728
+ Redirected to http://test.host/foos
3729
+ Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
3730
+  (0.1ms) SELECT COUNT(*) FROM "foos"
3731
+  (0.5ms) rollback transaction
3732
+  (0.1ms) begin transaction
3733
+  (0.1ms) SAVEPOINT active_record_1
3734
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3736
+ Processing by FoosController#destroy as HTML
3737
+ Parameters: {"id"=>"1"}
3738
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3739
+  (0.1ms) SAVEPOINT active_record_1
3740
+ SQL (0.5ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
3741
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3742
+ Redirected to http://test.host/foos
3743
+ Completed 302 Found in 3ms (ActiveRecord: 0.7ms)
3744
+  (0.6ms) rollback transaction
3745
+  (0.1ms) begin transaction
3746
+ Processing by SquirrelController#one as HTML
3747
+ Completed 200 OK in 5ms (Views: 4.1ms | ActiveRecord: 0.0ms)
3748
+  (0.1ms) rollback transaction
3749
+  (0.1ms) begin transaction
3750
+ Processing by SquirrelController#two as HTML
3751
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
3752
+  (0.1ms) rollback transaction
3753
+  (0.1ms) begin transaction
3754
+ Processing by SquirrelController#three as HTML
3755
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
3756
+  (0.1ms) rollback transaction
3757
+ ActiveRecord::SchemaMigration Load (0.6ms) SELECT "schema_migrations".* FROM "schema_migrations"
3758
+  (0.1ms) begin transaction
3759
+  (0.0ms) SAVEPOINT active_record_1
3760
+ SQL (0.9ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ AdminFoo Load (0.2ms) SELECT "admin_foos".* FROM "admin_foos"
3766
+  (0.4ms) rollback transaction
3767
+  (0.1ms) begin transaction
3768
+  (0.1ms) SAVEPOINT active_record_1
3769
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3771
+ Processing by AdminFoosController#show as HTML
3772
+ Parameters: {"id"=>"1"}
3773
+ AdminFoo Load (0.1ms) 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
+  (0.5ms) rollback transaction
3776
+  (0.1ms) 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
+  (0.1ms) rollback transaction
3781
+  (0.1ms) begin transaction
3782
+  (0.1ms) SAVEPOINT active_record_1
3783
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.4ms) rollback transaction
3790
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
3796
+  (0.1ms) begin transaction
3797
+  (0.1ms) SAVEPOINT active_record_1
3798
+ SQL (0.3ms) INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.759401"], ["updated_at", "2014-09-12 19:59:04.759401"]]
3799
+  (0.1ms) 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
+  (0.4ms) rollback transaction
3805
+  (0.1ms) begin transaction
3806
+  (0.1ms) SAVEPOINT active_record_1
3807
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.6ms) rollback transaction
3814
+  (0.1ms) begin transaction
3815
+ Processing by BunnyController#one as HTML
3816
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
3817
+  (0.1ms) rollback transaction
3818
+  (0.1ms) begin transaction
3819
+ Processing by BunnyController#two as HTML
3820
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
3821
+  (0.1ms) rollback transaction
3822
+  (0.1ms) begin transaction
3823
+ Processing by BunnyController#three as HTML
3824
+ Completed 200 OK in 3ms (Views: 2.8ms | ActiveRecord: 0.0ms)
3825
+  (0.1ms) rollback transaction
3826
+  (0.1ms) begin transaction
3827
+ Processing by CatController#one as HTML
3828
+ Completed 200 OK in 4ms (Views: 3.6ms | ActiveRecord: 0.0ms)
3829
+  (0.1ms) rollback transaction
3830
+  (0.1ms) begin transaction
3831
+ Processing by CatController#two as HTML
3832
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3833
+  (0.1ms) rollback transaction
3834
+  (0.1ms) begin transaction
3835
+ Processing by CatController#three as HTML
3836
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3837
+  (0.1ms) rollback transaction
3838
+  (0.1ms) begin transaction
3839
+ Processing by DogController#one as HTML
3840
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
3841
+  (0.1ms) rollback transaction
3842
+  (0.0ms) begin transaction
3843
+ Processing by DogController#two as HTML
3844
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3845
+  (0.1ms) rollback transaction
3846
+  (0.1ms) begin transaction
3847
+ Processing by DogController#three as HTML
3848
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
3849
+  (0.1ms) rollback transaction
3850
+  (0.1ms) begin transaction
3851
+  (0.1ms) SAVEPOINT active_record_1
3852
+ SQL (0.7ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.846010"], ["updated_at", "2014-09-12 19:59:04.846010"]]
3853
+  (0.1ms) 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
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos"
3857
+  (0.5ms) rollback transaction
3858
+  (0.1ms) begin transaction
3859
+  (0.1ms) SAVEPOINT active_record_1
3860
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.858276"], ["updated_at", "2014-09-12 19:59:04.858276"]]
3861
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3862
+ Processing by FoosController#show as HTML
3863
+ Parameters: {"id"=>"1"}
3864
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3865
+ Completed 200 OK in 3ms (Views: 1.8ms | ActiveRecord: 0.1ms)
3866
+  (0.5ms) rollback transaction
3867
+  (0.1ms) begin transaction
3868
+ Processing by FoosController#new as HTML
3869
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
3870
+  (0.1ms) rollback transaction
3871
+  (0.1ms) begin transaction
3872
+  (0.1ms) SAVEPOINT active_record_1
3873
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.871844"], ["updated_at", "2014-09-12 19:59:04.871844"]]
3874
+  (0.0ms) RELEASE SAVEPOINT active_record_1
3875
+ Processing by FoosController#edit as HTML
3876
+ Parameters: {"id"=>"1"}
3877
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3878
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.1ms)
3879
+  (0.6ms) rollback transaction
3880
+  (0.1ms) begin transaction
3881
+  (0.2ms) SELECT COUNT(*) FROM "foos"
3882
+ Processing by FoosController#create as HTML
3883
+ Parameters: {"foo"=>{"bar"=>"cool"}}
3884
+  (0.1ms) SAVEPOINT active_record_1
3885
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3887
+ Redirected to http://test.host/foos/1
3888
+ Completed 302 Found in 4ms (ActiveRecord: 0.6ms)
3889
+  (0.1ms) SELECT COUNT(*) FROM "foos"
3890
+  (0.6ms) rollback transaction
3891
+  (0.1ms) begin transaction
3892
+ Processing by FoosController#create as HTML
3893
+ Parameters: {"foo"=>{"bar"=>"cool"}}
3894
+  (0.1ms) SAVEPOINT active_record_1
3895
+ SQL (0.3ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3897
+ Redirected to http://test.host/foos/1
3898
+ Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
3899
+  (0.5ms) rollback transaction
3900
+  (0.1ms) begin transaction
3901
+ Processing by FoosController#create as HTML
3902
+ Parameters: {"foo"=>{"bar"=>"cool"}}
3903
+  (0.1ms) SAVEPOINT active_record_1
3904
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.903162"], ["updated_at", "2014-09-12 19:59:04.903162"]]
3905
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3906
+ Redirected to http://test.host/foos/1
3907
+ Completed 302 Found in 3ms (ActiveRecord: 0.6ms)
3908
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1
3909
+  (0.5ms) rollback transaction
3910
+  (0.1ms) begin transaction
3911
+ Processing by FoosController#create as HTML
3912
+ Parameters: {"foo"=>{"bar"=>""}}
3913
+  (0.1ms) SAVEPOINT active_record_1
3914
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3915
+ Completed 200 OK in 8ms (Views: 0.9ms | ActiveRecord: 0.1ms)
3916
+  (0.1ms) rollback transaction
3917
+  (0.1ms) begin transaction
3918
+ Processing by FoosController#create as HTML
3919
+ Parameters: {"foo"=>{"bar"=>""}}
3920
+  (0.1ms) SAVEPOINT active_record_1
3921
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3922
+ Completed 200 OK in 3ms (Views: 1.2ms | ActiveRecord: 0.1ms)
3923
+  (0.1ms) rollback transaction
3924
+  (0.1ms) begin transaction
3925
+  (0.1ms) SAVEPOINT active_record_1
3926
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.926656"], ["updated_at", "2014-09-12 19:59:04.926656"]]
3927
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3928
+ Processing by FoosController#update as HTML
3929
+ Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
3930
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3931
+  (0.1ms) SAVEPOINT active_record_1
3932
+ SQL (1.2ms) UPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1 [["bar", "yay"], ["updated_at", "2014-09-12 19:59:04.930915"]]
3933
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3934
+ Redirected to http://test.host/foos/1
3935
+ Completed 302 Found in 5ms (ActiveRecord: 1.4ms)
3936
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3937
+  (0.7ms) rollback transaction
3938
+  (0.1ms) begin transaction
3939
+  (0.1ms) SAVEPOINT active_record_1
3940
+ SQL (0.6ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.938362"], ["updated_at", "2014-09-12 19:59:04.938362"]]
3941
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3942
+ Processing by FoosController#update as HTML
3943
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
3944
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3945
+  (0.1ms) SAVEPOINT active_record_1
3946
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3947
+ Redirected to http://test.host/foos/1
3948
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
3949
+  (0.5ms) rollback transaction
3950
+  (0.1ms) begin transaction
3951
+  (0.1ms) SAVEPOINT active_record_1
3952
+ SQL (0.5ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.946610"], ["updated_at", "2014-09-12 19:59:04.946610"]]
3953
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3954
+ Processing by FoosController#update as HTML
3955
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
3956
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3957
+  (0.1ms) SAVEPOINT active_record_1
3958
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3959
+ Redirected to http://test.host/foos/1
3960
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
3961
+  (0.6ms) rollback transaction
3962
+  (0.1ms) begin transaction
3963
+  (0.1ms) SAVEPOINT active_record_1
3964
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.955910"], ["updated_at", "2014-09-12 19:59:04.955910"]]
3965
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3966
+ Processing by FoosController#update as HTML
3967
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
3968
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3969
+  (0.1ms) SAVEPOINT active_record_1
3970
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3971
+ Completed 200 OK in 4ms (Views: 1.0ms | ActiveRecord: 0.2ms)
3972
+  (0.6ms) rollback transaction
3973
+  (0.1ms) begin transaction
3974
+  (0.1ms) SAVEPOINT active_record_1
3975
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.966189"], ["updated_at", "2014-09-12 19:59:04.966189"]]
3976
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3977
+ Processing by FoosController#update as HTML
3978
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
3979
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3980
+  (0.1ms) SAVEPOINT active_record_1
3981
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
3982
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.2ms)
3983
+  (0.6ms) rollback transaction
3984
+  (0.1ms) begin transaction
3985
+  (0.1ms) SAVEPOINT active_record_1
3986
+ SQL (0.5ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:04.975446"], ["updated_at", "2014-09-12 19:59:04.975446"]]
3987
+  (0.2ms) RELEASE SAVEPOINT active_record_1
3988
+  (0.1ms) SELECT COUNT(*) FROM "foos"
3989
+ Processing by FoosController#destroy as HTML
3990
+ Parameters: {"id"=>"1"}
3991
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
3992
+  (0.1ms) SAVEPOINT active_record_1
3993
+ SQL (0.5ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
3994
+  (0.1ms) RELEASE SAVEPOINT active_record_1
3995
+ Redirected to http://test.host/foos
3996
+ Completed 302 Found in 3ms (ActiveRecord: 0.7ms)
3997
+  (0.1ms) SELECT COUNT(*) FROM "foos"
3998
+  (0.5ms) rollback transaction
3999
+  (0.1ms) begin transaction
4000
+  (0.1ms) SAVEPOINT active_record_1
4001
+ SQL (0.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4003
+ Processing by FoosController#destroy as HTML
4004
+ Parameters: {"id"=>"1"}
4005
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
4006
+  (0.1ms) SAVEPOINT active_record_1
4007
+ SQL (0.5ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
4008
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4009
+ Redirected to http://test.host/foos
4010
+ Completed 302 Found in 3ms (ActiveRecord: 0.7ms)
4011
+  (0.5ms) rollback transaction
4012
+  (0.1ms) begin transaction
4013
+ Processing by SquirrelController#one as HTML
4014
+ Completed 200 OK in 3ms (Views: 2.5ms | ActiveRecord: 0.0ms)
4015
+  (0.1ms) rollback transaction
4016
+  (0.1ms) begin transaction
4017
+ Processing by SquirrelController#two as HTML
4018
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
4019
+  (0.1ms) rollback transaction
4020
+  (0.1ms) begin transaction
4021
+ Processing by SquirrelController#three as HTML
4022
+ Completed 200 OK in 2ms (Views: 2.1ms | ActiveRecord: 0.0ms)
4023
+  (0.1ms) rollback transaction
4024
+ ActiveRecord::SchemaMigration Load (0.5ms) SELECT "schema_migrations".* FROM "schema_migrations"
4025
+  (0.1ms) begin transaction
4026
+  (0.1ms) SAVEPOINT active_record_1
4027
+ SQL (1.4ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+ AdminFoo Load (0.1ms) SELECT "admin_foos".* FROM "admin_foos"
4033
+  (0.5ms) rollback transaction
4034
+  (0.1ms) begin transaction
4035
+  (0.0ms) SAVEPOINT active_record_1
4036
+ SQL (0.4ms) 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
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4038
+ Processing by AdminFoosController#show as HTML
4039
+ Parameters: {"id"=>"1"}
4040
+ AdminFoo Load (0.2ms) 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
+  (0.6ms) rollback transaction
4043
+  (0.1ms) 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
+  (0.1ms) rollback transaction
4048
+  (0.1ms) begin transaction
4049
+  (0.1ms) SAVEPOINT active_record_1
4050
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.6ms) rollback transaction
4057
+  (0.1ms) begin transaction
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
+  (0.1ms) rollback transaction
4063
+  (0.1ms) begin transaction
4064
+  (0.1ms) SAVEPOINT active_record_1
4065
+ SQL (0.4ms) INSERT INTO "admin_foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.046765"], ["updated_at", "2014-09-12 19:59:28.046765"]]
4066
+  (0.1ms) 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
+  (0.5ms) rollback transaction
4072
+  (0.1ms) begin transaction
4073
+  (0.1ms) SAVEPOINT active_record_1
4074
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
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
+  (0.6ms) rollback transaction
4081
+  (0.1ms) begin transaction
4082
+ Processing by BunnyController#one as HTML
4083
+ Completed 200 OK in 3ms (Views: 2.6ms | ActiveRecord: 0.0ms)
4084
+  (0.1ms) rollback transaction
4085
+  (0.1ms) begin transaction
4086
+ Processing by BunnyController#two as HTML
4087
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
4088
+  (0.1ms) rollback transaction
4089
+  (0.1ms) begin transaction
4090
+ Processing by BunnyController#three as HTML
4091
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
4092
+  (0.1ms) rollback transaction
4093
+  (0.1ms) begin transaction
4094
+ Processing by CatController#one as HTML
4095
+ Completed 200 OK in 3ms (Views: 2.3ms | ActiveRecord: 0.0ms)
4096
+  (0.1ms) rollback transaction
4097
+  (0.1ms) begin transaction
4098
+ Processing by CatController#two as HTML
4099
+ Completed 200 OK in 2ms (Views: 2.0ms | ActiveRecord: 0.0ms)
4100
+  (0.1ms) rollback transaction
4101
+  (0.1ms) begin transaction
4102
+ Processing by CatController#three as HTML
4103
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
4104
+  (0.1ms) rollback transaction
4105
+  (0.1ms) begin transaction
4106
+ Processing by DogController#one as HTML
4107
+ Completed 200 OK in 3ms (Views: 2.2ms | ActiveRecord: 0.0ms)
4108
+  (0.1ms) rollback transaction
4109
+  (0.0ms) begin transaction
4110
+ Processing by DogController#two as HTML
4111
+ Completed 200 OK in 2ms (Views: 1.5ms | ActiveRecord: 0.0ms)
4112
+  (0.1ms) rollback transaction
4113
+  (0.0ms) begin transaction
4114
+ Processing by DogController#three as HTML
4115
+ Completed 200 OK in 2ms (Views: 1.7ms | ActiveRecord: 0.0ms)
4116
+  (0.1ms) rollback transaction
4117
+  (0.0ms) begin transaction
4118
+  (0.1ms) SAVEPOINT active_record_1
4119
+ SQL (0.8ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.118856"], ["updated_at", "2014-09-12 19:59:28.118856"]]
4120
+  (0.1ms) 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
+ Foo Load (0.2ms) SELECT "foos".* FROM "foos"
4124
+  (0.6ms) rollback transaction
4125
+  (0.1ms) begin transaction
4126
+  (0.1ms) SAVEPOINT active_record_1
4127
+ SQL (0.7ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.132957"], ["updated_at", "2014-09-12 19:59:28.132957"]]
4128
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4129
+ Processing by FoosController#show as HTML
4130
+ Parameters: {"id"=>"1"}
4131
+ Foo Load (0.2ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
4132
+ Completed 200 OK in 4ms (Views: 2.2ms | ActiveRecord: 0.2ms)
4133
+  (0.7ms) rollback transaction
4134
+  (0.1ms) begin transaction
4135
+ Processing by FoosController#new as HTML
4136
+ Completed 200 OK in 3ms (Views: 2.4ms | ActiveRecord: 0.0ms)
4137
+  (0.1ms) rollback transaction
4138
+  (0.1ms) begin transaction
4139
+  (0.1ms) SAVEPOINT active_record_1
4140
+ SQL (0.5ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.151251"], ["updated_at", "2014-09-12 19:59:28.151251"]]
4141
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4142
+ Processing by FoosController#edit as HTML
4143
+ Parameters: {"id"=>"1"}
4144
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
4145
+ Completed 200 OK in 3ms (Views: 2.1ms | ActiveRecord: 0.1ms)
4146
+  (1.0ms) rollback transaction
4147
+  (0.1ms) begin transaction
4148
+  (0.3ms) SELECT COUNT(*) FROM "foos"
4149
+ Processing by FoosController#create as HTML
4150
+ Parameters: {"foo"=>{"bar"=>"cool"}}
4151
+  (0.1ms) SAVEPOINT active_record_1
4152
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4154
+ Redirected to http://test.host/foos/1
4155
+ Completed 302 Found in 3ms (ActiveRecord: 0.4ms)
4156
+  (0.1ms) SELECT COUNT(*) FROM "foos"
4157
+  (0.5ms) rollback transaction
4158
+  (0.1ms) begin transaction
4159
+ Processing by FoosController#create as HTML
4160
+ Parameters: {"foo"=>{"bar"=>"cool"}}
4161
+  (0.1ms) SAVEPOINT active_record_1
4162
+ SQL (0.5ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4164
+ Redirected to http://test.host/foos/1
4165
+ Completed 302 Found in 4ms (ActiveRecord: 0.8ms)
4166
+  (0.5ms) rollback transaction
4167
+  (0.1ms) begin transaction
4168
+ Processing by FoosController#create as HTML
4169
+ Parameters: {"foo"=>{"bar"=>"cool"}}
4170
+  (0.1ms) SAVEPOINT active_record_1
4171
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.186926"], ["updated_at", "2014-09-12 19:59:28.186926"]]
4172
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4173
+ Redirected to http://test.host/foos/1
4174
+ Completed 302 Found in 4ms (ActiveRecord: 0.6ms)
4175
+ Foo Load (0.2ms) SELECT "foos".* FROM "foos" ORDER BY "foos"."id" DESC LIMIT 1
4176
+  (0.6ms) rollback transaction
4177
+  (0.1ms) begin transaction
4178
+ Processing by FoosController#create as HTML
4179
+ Parameters: {"foo"=>{"bar"=>""}}
4180
+  (0.1ms) SAVEPOINT active_record_1
4181
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4182
+ Completed 200 OK in 9ms (Views: 1.0ms | ActiveRecord: 0.2ms)
4183
+  (0.1ms) rollback transaction
4184
+  (0.1ms) begin transaction
4185
+ Processing by FoosController#create as HTML
4186
+ Parameters: {"foo"=>{"bar"=>""}}
4187
+  (0.1ms) SAVEPOINT active_record_1
4188
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4189
+ Completed 200 OK in 3ms (Views: 0.9ms | ActiveRecord: 0.1ms)
4190
+  (0.1ms) rollback transaction
4191
+  (0.1ms) begin transaction
4192
+  (0.1ms) SAVEPOINT active_record_1
4193
+ SQL (0.4ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.214053"], ["updated_at", "2014-09-12 19:59:28.214053"]]
4194
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4195
+ Processing by FoosController#update as HTML
4196
+ Parameters: {"foo"=>{"bar"=>"yay"}, "id"=>"1"}
4197
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
4198
+  (0.1ms) SAVEPOINT active_record_1
4199
+ SQL (1.7ms) UPDATE "foos" SET "bar" = ?, "updated_at" = ? WHERE "foos"."id" = 1 [["bar", "yay"], ["updated_at", "2014-09-12 19:59:28.219843"]]
4200
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4201
+ Redirected to http://test.host/foos/1
4202
+ Completed 302 Found in 7ms (ActiveRecord: 2.0ms)
4203
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
4204
+  (0.5ms) rollback transaction
4205
+  (0.1ms) begin transaction
4206
+  (0.1ms) SAVEPOINT active_record_1
4207
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.228861"], ["updated_at", "2014-09-12 19:59:28.228861"]]
4208
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4209
+ Processing by FoosController#update as HTML
4210
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
4211
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
4212
+  (0.1ms) SAVEPOINT active_record_1
4213
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4214
+ Redirected to http://test.host/foos/1
4215
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
4216
+  (0.4ms) rollback transaction
4217
+  (0.1ms) begin transaction
4218
+  (0.1ms) SAVEPOINT active_record_1
4219
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.236635"], ["updated_at", "2014-09-12 19:59:28.236635"]]
4220
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4221
+ Processing by FoosController#update as HTML
4222
+ Parameters: {"foo"=>{"bar"=>"cool"}, "id"=>"1"}
4223
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
4224
+  (0.0ms) SAVEPOINT active_record_1
4225
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4226
+ Redirected to http://test.host/foos/1
4227
+ Completed 302 Found in 2ms (ActiveRecord: 0.2ms)
4228
+  (0.4ms) rollback transaction
4229
+  (0.1ms) begin transaction
4230
+  (0.1ms) SAVEPOINT active_record_1
4231
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.244236"], ["updated_at", "2014-09-12 19:59:28.244236"]]
4232
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4233
+ Processing by FoosController#update as HTML
4234
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
4235
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
4236
+  (0.1ms) SAVEPOINT active_record_1
4237
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4238
+ Completed 200 OK in 4ms (Views: 1.1ms | ActiveRecord: 0.2ms)
4239
+  (0.3ms) rollback transaction
4240
+  (0.1ms) begin transaction
4241
+  (0.0ms) SAVEPOINT active_record_1
4242
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.252865"], ["updated_at", "2014-09-12 19:59:28.252865"]]
4243
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4244
+ Processing by FoosController#update as HTML
4245
+ Parameters: {"foo"=>{"bar"=>""}, "id"=>"1"}
4246
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
4247
+  (0.1ms) SAVEPOINT active_record_1
4248
+  (0.1ms) ROLLBACK TO SAVEPOINT active_record_1
4249
+ Completed 200 OK in 4ms (Views: 1.2ms | ActiveRecord: 0.2ms)
4250
+  (0.4ms) rollback transaction
4251
+  (0.1ms) begin transaction
4252
+  (0.1ms) SAVEPOINT active_record_1
4253
+ SQL (0.3ms) INSERT INTO "foos" ("bar", "created_at", "updated_at") VALUES (?, ?, ?) [["bar", "cool"], ["created_at", "2014-09-12 19:59:28.262647"], ["updated_at", "2014-09-12 19:59:28.262647"]]
4254
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4255
+  (0.1ms) SELECT COUNT(*) FROM "foos"
4256
+ Processing by FoosController#destroy as HTML
4257
+ Parameters: {"id"=>"1"}
4258
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
4259
+  (0.1ms) SAVEPOINT active_record_1
4260
+ SQL (0.5ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
4261
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4262
+ Redirected to http://test.host/foos
4263
+ Completed 302 Found in 3ms (ActiveRecord: 0.8ms)
4264
+  (0.1ms) SELECT COUNT(*) FROM "foos"
4265
+  (0.4ms) rollback transaction
4266
+  (0.1ms) begin transaction
4267
+  (0.1ms) SAVEPOINT active_record_1
4268
+ SQL (0.2ms) 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
+  (0.1ms) RELEASE SAVEPOINT active_record_1
4270
+ Processing by FoosController#destroy as HTML
4271
+ Parameters: {"id"=>"1"}
4272
+ Foo Load (0.1ms) SELECT "foos".* FROM "foos" WHERE "foos"."id" = ? LIMIT 1 [["id", 1]]
4273
+  (0.1ms) SAVEPOINT active_record_1
4274
+ SQL (0.3ms) DELETE FROM "foos" WHERE "foos"."id" = ? [["id", 1]]
4275
+  (0.0ms) RELEASE SAVEPOINT active_record_1
4276
+ Redirected to http://test.host/foos
4277
+ Completed 302 Found in 2ms (ActiveRecord: 0.5ms)
4278
+  (0.5ms) rollback transaction
4279
+  (0.1ms) begin transaction
4280
+ Processing by SquirrelController#one as HTML
4281
+ Completed 200 OK in 3ms (Views: 3.0ms | ActiveRecord: 0.0ms)
4282
+  (0.1ms) rollback transaction
4283
+  (0.1ms) begin transaction
4284
+ Processing by SquirrelController#two as HTML
4285
+ Completed 200 OK in 2ms (Views: 1.8ms | ActiveRecord: 0.0ms)
4286
+  (0.1ms) rollback transaction
4287
+  (0.1ms) begin transaction
4288
+ Processing by SquirrelController#three as HTML
4289
+ Completed 200 OK in 2ms (Views: 1.9ms | ActiveRecord: 0.0ms)
4290
+  (0.1ms) rollback transaction