scratchpad 0.0.1 → 0.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 900620bb8b73904800248533c775be1d46401a3d
4
- data.tar.gz: 08eb9146d2e407b3a1116fcc6ad9edc7a6b95d6a
3
+ metadata.gz: 8c3166e015e28fac040885766ad8c94636750363
4
+ data.tar.gz: 86058e64fd9578b40e99b9a8d82db42ff7bdf820
5
5
  SHA512:
6
- metadata.gz: beb4623ca23e29819fd4191048d21cdcc8ef87fbc5425968406073fde4dd42c3e6d17762fc57a5193c316461460df7a93a4fe415e4b8c90b6369e60826d71354
7
- data.tar.gz: 3fe20539c7eda6915bfdd714154d647d2cb11b0036a796830e99d02a1d6396ca82f8a9132526ab0808b644832b2b0665dc90d80a43292d608984dc1787533893
6
+ metadata.gz: 086d2c486f2453c864a9d40abe594d376ea31d1a5c2acda190d6ed718caa2b92d18e149f5594d457869ecea8f644b5c32fa45e5e42d30dee5144dd18f6be2287
7
+ data.tar.gz: 1ed974851ce62fef458dd102a30799f5bf023b0fb8b709172fb8a5d66007fdae3d69dd88a9a9dde569295c64e807e9b19ad0a6700ffea1dbd54a0054f65f0651
@@ -5,14 +5,14 @@ module Scratchpad
5
5
  end
6
6
 
7
7
  def add content
8
- (@content ||= []) << content
8
+ (@content ||= []) << content.dup
9
9
  end
10
10
 
11
11
  def to_html
12
12
  return "" unless @content
13
13
  %Q{
14
- <div id="scratchpad">
15
- #{@content.map { |i| "<div class='scratch'>#{i}</div>" }.join}
14
+ <div id="scratchpad" style="position:absolute;bottom:0;background-color:#333;color:whitesmoke;width:100%;padding:5px;">
15
+ #{@content.map { |i| "<div class='scratch'>#{CGI::escapeHTML(i.inspect)}</div>" }.join}
16
16
  </div>
17
17
  }
18
18
  end
@@ -1,3 +1,3 @@
1
1
  module Scratchpad
2
- VERSION = "0.0.1"
2
+ VERSION = "0.0.2"
3
3
  end
@@ -1,9 +1,2 @@
1
1
  class PagesController < ActionController::Base
2
-
3
- def empty; end
4
- def no_scratch;end
5
- def scratch; end
6
- def multiple_scratch; end
7
- def scratch_with_partial_scratch; end
8
-
9
2
  end
@@ -0,0 +1,8 @@
1
+ class Foo
2
+ attr_accessor :bar
3
+
4
+ def initialize
5
+ @bar = 'baz'
6
+ end
7
+
8
+ end
@@ -0,0 +1,7 @@
1
+ <h1>Multiple Scratch With Changed Object</h1>
2
+ <%
3
+ @foo = Foo.new
4
+ scratchpad @foo
5
+ @foo.bar = 'buzz'
6
+ scratchpad @foo
7
+ %>
@@ -1,3 +1,3 @@
1
1
  <h1>Scratch Object</h1>
2
2
 
3
- <% scratchpad Time.now %>
3
+ <% scratchpad Foo.new %>
@@ -0,0 +1,6 @@
1
+ <h1>Scratch With Changed Object</h1>
2
+ <%
3
+ @foo = Foo.new
4
+ scratchpad @foo
5
+ @foo.bar = 'buzz'
6
+ %>
@@ -4,6 +4,9 @@ Rails.application.routes.draw do
4
4
  get '/no_scratch' => 'pages#no_scratch'
5
5
  get '/scratch' => 'pages#scratch'
6
6
  get '/scratch_object' => 'pages#scratch_object'
7
+ get '/scratch_with_changed_object' => 'pages#scratch_with_changed_object'
8
+ get '/multiple_scratch_with_changed_object' \
9
+ => 'pages#multiple_scratch_with_changed_object'
7
10
  get '/multiple_scratch' => 'pages#multiple_scratch'
8
11
  get '/scratch_with_partial_scratch' => 'pages#scratch_with_partial_scratch'
9
12
 
@@ -1560,3 +1560,2482 @@ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 15:08:08 -0500
1560
1560
  Processing by PagesController#scratch as HTML
1561
1561
  Rendered pages/scratch.html.erb (0.0ms)
1562
1562
  Completed 200 OK in 0ms (Views: 0.2ms)
1563
+ ---------------------------------------------------------------------
1564
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
1565
+ ---------------------------------------------------------------------
1566
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:11:57 -0500
1567
+ Processing by PagesController#scratch as HTML
1568
+ Rendered pages/scratch.html.erb (0.8ms)
1569
+ Completed 200 OK in 6ms (Views: 5.8ms)
1570
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:11:57 -0500
1571
+ Processing by PagesController#scratch as HTML
1572
+ Rendered pages/scratch.html.erb (0.0ms)
1573
+ Completed 200 OK in 0ms (Views: 0.2ms)
1574
+ ---------------------------------------------------------------------
1575
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
1576
+ ---------------------------------------------------------------------
1577
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:11:57 -0500
1578
+ Processing by PagesController#scratch as HTML
1579
+ Rendered pages/scratch.html.erb (0.0ms)
1580
+ Completed 200 OK in 0ms (Views: 0.2ms)
1581
+ -----------------------------------------------------------------------
1582
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
1583
+ -----------------------------------------------------------------------
1584
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:11:57 -0500
1585
+ Processing by PagesController#empty as HTML
1586
+ Rendered pages/empty.html.erb (0.2ms)
1587
+ Completed 200 OK in 1ms (Views: 1.0ms)
1588
+ --------------------------
1589
+ ScratchpadTest: test_truth
1590
+ --------------------------
1591
+ -------------------------------------------------------------------------
1592
+ RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
1593
+ -------------------------------------------------------------------------
1594
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:11:57 -0500
1595
+ Processing by PagesController#multiple_scratch as HTML
1596
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
1597
+ Completed 200 OK in 1ms (Views: 1.2ms)
1598
+ -------------------------------------------------------------
1599
+ RenderingTest: test_object_scratchs_should_inspect_the_object
1600
+ -------------------------------------------------------------
1601
+ Started GET "/object_scratch" for 127.0.0.1 at 2015-01-09 16:11:57 -0500
1602
+ --------------------------------------------------------------------------
1603
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
1604
+ --------------------------------------------------------------------------
1605
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:11:57 -0500
1606
+ Processing by PagesController#multiple_scratch as HTML
1607
+ Rendered pages/multiple_scratch.html.erb (0.1ms)
1608
+ Completed 200 OK in 0ms (Views: 0.3ms)
1609
+ -------------------------------------------------------------
1610
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
1611
+ -------------------------------------------------------------
1612
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:11:57 -0500
1613
+ Processing by PagesController#empty as HTML
1614
+ Rendered pages/empty.html.erb (0.0ms)
1615
+ Completed 200 OK in 0ms (Views: 0.2ms)
1616
+ -------------------------------------------------------------
1617
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
1618
+ -------------------------------------------------------------
1619
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:11:57 -0500
1620
+ Processing by PagesController#scratch as HTML
1621
+ Rendered pages/scratch.html.erb (0.0ms)
1622
+ Completed 200 OK in 0ms (Views: 0.2ms)
1623
+ -------------------------------------------------------------------------
1624
+ RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
1625
+ -------------------------------------------------------------------------
1626
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:12:17 -0500
1627
+ Processing by PagesController#multiple_scratch as HTML
1628
+ Rendered pages/multiple_scratch.html.erb (0.7ms)
1629
+ Completed 200 OK in 6ms (Views: 6.2ms)
1630
+ --------------------------------------------------------------------------
1631
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
1632
+ --------------------------------------------------------------------------
1633
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:12:17 -0500
1634
+ Processing by PagesController#multiple_scratch as HTML
1635
+ Rendered pages/multiple_scratch.html.erb (0.1ms)
1636
+ Completed 200 OK in 0ms (Views: 0.4ms)
1637
+ -------------------------------------------------------------
1638
+ RenderingTest: test_object_scratchs_should_inspect_the_object
1639
+ -------------------------------------------------------------
1640
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:12:17 -0500
1641
+ Processing by PagesController#scratch_object as HTML
1642
+ Rendered pages/scratch_object.html.erb (0.2ms)
1643
+ Completed 200 OK in 1ms (Views: 1.0ms)
1644
+ -------------------------------------------------------------
1645
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
1646
+ -------------------------------------------------------------
1647
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:12:17 -0500
1648
+ Processing by PagesController#scratch as HTML
1649
+ Rendered pages/scratch.html.erb (0.3ms)
1650
+ Completed 200 OK in 1ms (Views: 1.0ms)
1651
+ -------------------------------------------------------------
1652
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
1653
+ -------------------------------------------------------------
1654
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:12:17 -0500
1655
+ Processing by PagesController#empty as HTML
1656
+ Rendered pages/empty.html.erb (0.2ms)
1657
+ Completed 200 OK in 1ms (Views: 1.0ms)
1658
+ --------------------------
1659
+ ScratchpadTest: test_truth
1660
+ --------------------------
1661
+ -----------------------------------------------------------------------
1662
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
1663
+ -----------------------------------------------------------------------
1664
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:12:17 -0500
1665
+ Processing by PagesController#empty as HTML
1666
+ Rendered pages/empty.html.erb (0.0ms)
1667
+ Completed 200 OK in 0ms (Views: 0.3ms)
1668
+ ---------------------------------------------------------------------
1669
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
1670
+ ---------------------------------------------------------------------
1671
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:12:17 -0500
1672
+ Processing by PagesController#scratch as HTML
1673
+ Rendered pages/scratch.html.erb (0.1ms)
1674
+ Completed 200 OK in 0ms (Views: 0.2ms)
1675
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:12:17 -0500
1676
+ Processing by PagesController#scratch as HTML
1677
+ Rendered pages/scratch.html.erb (0.0ms)
1678
+ Completed 200 OK in 0ms (Views: 0.2ms)
1679
+ ---------------------------------------------------------------------
1680
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
1681
+ ---------------------------------------------------------------------
1682
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:12:17 -0500
1683
+ Processing by PagesController#scratch as HTML
1684
+ Rendered pages/scratch.html.erb (0.0ms)
1685
+ Completed 200 OK in 0ms (Views: 0.2ms)
1686
+ --------------------------
1687
+ ScratchpadTest: test_truth
1688
+ --------------------------
1689
+ --------------------------------------------------------------------------
1690
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
1691
+ --------------------------------------------------------------------------
1692
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:12:59 -0500
1693
+ Processing by PagesController#multiple_scratch as HTML
1694
+ Rendered pages/multiple_scratch.html.erb (0.7ms)
1695
+ Completed 200 OK in 6ms (Views: 6.1ms)
1696
+ -------------------------------------------------------------
1697
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
1698
+ -------------------------------------------------------------
1699
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:12:59 -0500
1700
+ Processing by PagesController#scratch as HTML
1701
+ Rendered pages/scratch.html.erb (0.3ms)
1702
+ Completed 200 OK in 1ms (Views: 1.1ms)
1703
+ -------------------------------------------------------------
1704
+ RenderingTest: test_object_scratchs_should_inspect_the_object
1705
+ -------------------------------------------------------------
1706
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:12:59 -0500
1707
+ Processing by PagesController#scratch_object as HTML
1708
+ Rendered pages/scratch_object.html.erb (0.2ms)
1709
+ Completed 200 OK in 1ms (Views: 1.0ms)
1710
+ -------------------------------------------------------------
1711
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
1712
+ -------------------------------------------------------------
1713
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:12:59 -0500
1714
+ Processing by PagesController#empty as HTML
1715
+ Rendered pages/empty.html.erb (0.2ms)
1716
+ Completed 200 OK in 1ms (Views: 1.0ms)
1717
+ -------------------------------------------------------------------------
1718
+ RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
1719
+ -------------------------------------------------------------------------
1720
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:12:59 -0500
1721
+ Processing by PagesController#multiple_scratch as HTML
1722
+ Rendered pages/multiple_scratch.html.erb (0.1ms)
1723
+ Completed 200 OK in 0ms (Views: 0.3ms)
1724
+ -----------------------------------------------------------------------
1725
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
1726
+ -----------------------------------------------------------------------
1727
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:12:59 -0500
1728
+ Processing by PagesController#empty as HTML
1729
+ Rendered pages/empty.html.erb (0.0ms)
1730
+ Completed 200 OK in 0ms (Views: 0.3ms)
1731
+ ---------------------------------------------------------------------
1732
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
1733
+ ---------------------------------------------------------------------
1734
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:12:59 -0500
1735
+ Processing by PagesController#scratch as HTML
1736
+ Rendered pages/scratch.html.erb (0.1ms)
1737
+ Completed 200 OK in 0ms (Views: 0.3ms)
1738
+ ---------------------------------------------------------------------
1739
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
1740
+ ---------------------------------------------------------------------
1741
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:12:59 -0500
1742
+ Processing by PagesController#scratch as HTML
1743
+ Rendered pages/scratch.html.erb (0.0ms)
1744
+ Completed 200 OK in 0ms (Views: 0.2ms)
1745
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:12:59 -0500
1746
+ Processing by PagesController#scratch as HTML
1747
+ Rendered pages/scratch.html.erb (0.0ms)
1748
+ Completed 200 OK in 0ms (Views: 0.2ms)
1749
+ -------------------------------------------------------------------------
1750
+ RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
1751
+ -------------------------------------------------------------------------
1752
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:16:32 -0500
1753
+ Processing by PagesController#multiple_scratch as HTML
1754
+ Rendered pages/multiple_scratch.html.erb (0.8ms)
1755
+ Completed 200 OK in 6ms (Views: 5.7ms)
1756
+ -------------------------------------------------------------
1757
+ RenderingTest: test_object_scratchs_should_inspect_the_object
1758
+ -------------------------------------------------------------
1759
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:16:32 -0500
1760
+ Processing by PagesController#scratch_object as HTML
1761
+ Rendered pages/scratch_object.html.erb (0.3ms)
1762
+ Completed 200 OK in 1ms (Views: 1.1ms)
1763
+ -------------------------------------------------------------
1764
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
1765
+ -------------------------------------------------------------
1766
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:16:32 -0500
1767
+ Processing by PagesController#scratch as HTML
1768
+ Rendered pages/scratch.html.erb (0.2ms)
1769
+ Completed 200 OK in 1ms (Views: 1.0ms)
1770
+ -------------------------------------------------------------
1771
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
1772
+ -------------------------------------------------------------
1773
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:16:32 -0500
1774
+ Processing by PagesController#empty as HTML
1775
+ Rendered pages/empty.html.erb (0.2ms)
1776
+ Completed 200 OK in 1ms (Views: 1.0ms)
1777
+ --------------------------------------------------------------------------
1778
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
1779
+ --------------------------------------------------------------------------
1780
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:16:32 -0500
1781
+ Processing by PagesController#multiple_scratch as HTML
1782
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
1783
+ Completed 200 OK in 0ms (Views: 0.2ms)
1784
+ ---------------------------------------------------------------------
1785
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
1786
+ ---------------------------------------------------------------------
1787
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:16:32 -0500
1788
+ Processing by PagesController#scratch as HTML
1789
+ Rendered pages/scratch.html.erb (0.0ms)
1790
+ Completed 200 OK in 0ms (Views: 0.2ms)
1791
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:16:32 -0500
1792
+ Processing by PagesController#scratch as HTML
1793
+ Rendered pages/scratch.html.erb (0.0ms)
1794
+ Completed 200 OK in 0ms (Views: 0.2ms)
1795
+ ---------------------------------------------------------------------
1796
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
1797
+ ---------------------------------------------------------------------
1798
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:16:32 -0500
1799
+ Processing by PagesController#scratch as HTML
1800
+ Rendered pages/scratch.html.erb (0.0ms)
1801
+ Completed 200 OK in 0ms (Views: 0.2ms)
1802
+ -----------------------------------------------------------------------
1803
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
1804
+ -----------------------------------------------------------------------
1805
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:16:32 -0500
1806
+ Processing by PagesController#empty as HTML
1807
+ Rendered pages/empty.html.erb (0.0ms)
1808
+ Completed 200 OK in 0ms (Views: 0.2ms)
1809
+ --------------------------
1810
+ ScratchpadTest: test_truth
1811
+ --------------------------
1812
+ -------------------------------------------------------------
1813
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
1814
+ -------------------------------------------------------------
1815
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:16:46 -0500
1816
+ Processing by PagesController#scratch as HTML
1817
+ Rendered pages/scratch.html.erb (0.7ms)
1818
+ Completed 200 OK in 5ms (Views: 5.4ms)
1819
+ -------------------------------------------------------------
1820
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
1821
+ -------------------------------------------------------------
1822
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:16:46 -0500
1823
+ Processing by PagesController#empty as HTML
1824
+ Rendered pages/empty.html.erb (0.2ms)
1825
+ Completed 200 OK in 1ms (Views: 1.2ms)
1826
+ -------------------------------------------------------------------------
1827
+ RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
1828
+ -------------------------------------------------------------------------
1829
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:16:46 -0500
1830
+ Processing by PagesController#multiple_scratch as HTML
1831
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
1832
+ Completed 200 OK in 1ms (Views: 1.1ms)
1833
+ -------------------------------------------------------------
1834
+ RenderingTest: test_object_scratchs_should_inspect_the_object
1835
+ -------------------------------------------------------------
1836
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:16:46 -0500
1837
+ Processing by PagesController#scratch_object as HTML
1838
+ Rendered pages/scratch_object.html.erb (0.2ms)
1839
+ Completed 200 OK in 1ms (Views: 1.0ms)
1840
+ --------------------------------------------------------------------------
1841
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
1842
+ --------------------------------------------------------------------------
1843
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:16:46 -0500
1844
+ Processing by PagesController#multiple_scratch as HTML
1845
+ Rendered pages/multiple_scratch.html.erb (0.1ms)
1846
+ Completed 200 OK in 1ms (Views: 0.5ms)
1847
+ ---------------------------------------------------------------------
1848
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
1849
+ ---------------------------------------------------------------------
1850
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:16:46 -0500
1851
+ Processing by PagesController#scratch as HTML
1852
+ Rendered pages/scratch.html.erb (0.0ms)
1853
+ Completed 200 OK in 0ms (Views: 0.3ms)
1854
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:16:46 -0500
1855
+ Processing by PagesController#scratch as HTML
1856
+ Rendered pages/scratch.html.erb (0.0ms)
1857
+ Completed 200 OK in 0ms (Views: 0.2ms)
1858
+ ---------------------------------------------------------------------
1859
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
1860
+ ---------------------------------------------------------------------
1861
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:16:46 -0500
1862
+ Processing by PagesController#scratch as HTML
1863
+ Rendered pages/scratch.html.erb (0.0ms)
1864
+ Completed 200 OK in 0ms (Views: 0.2ms)
1865
+ -----------------------------------------------------------------------
1866
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
1867
+ -----------------------------------------------------------------------
1868
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:16:46 -0500
1869
+ Processing by PagesController#empty as HTML
1870
+ Rendered pages/empty.html.erb (0.0ms)
1871
+ Completed 200 OK in 0ms (Views: 0.2ms)
1872
+ --------------------------
1873
+ ScratchpadTest: test_truth
1874
+ --------------------------
1875
+ --------------------------------------------------------------------------
1876
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
1877
+ --------------------------------------------------------------------------
1878
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:17:15 -0500
1879
+ Processing by PagesController#multiple_scratch as HTML
1880
+ Rendered pages/multiple_scratch.html.erb (0.7ms)
1881
+ Completed 200 OK in 6ms (Views: 5.5ms)
1882
+ -------------------------------------------------------------
1883
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
1884
+ -------------------------------------------------------------
1885
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:17:15 -0500
1886
+ Processing by PagesController#empty as HTML
1887
+ Rendered pages/empty.html.erb (0.2ms)
1888
+ Completed 200 OK in 1ms (Views: 1.1ms)
1889
+ -------------------------------------------------------------
1890
+ RenderingTest: test_object_scratchs_should_inspect_the_object
1891
+ -------------------------------------------------------------
1892
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:17:15 -0500
1893
+ Processing by PagesController#scratch_object as HTML
1894
+ Rendered pages/scratch_object.html.erb (0.2ms)
1895
+ Completed 200 OK in 1ms (Views: 1.0ms)
1896
+ -------------------------------------------------------------------------
1897
+ RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
1898
+ -------------------------------------------------------------------------
1899
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:17:15 -0500
1900
+ Processing by PagesController#multiple_scratch as HTML
1901
+ Rendered pages/multiple_scratch.html.erb (0.1ms)
1902
+ Completed 200 OK in 0ms (Views: 0.3ms)
1903
+ -------------------------------------------------------------
1904
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
1905
+ -------------------------------------------------------------
1906
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:17:15 -0500
1907
+ Processing by PagesController#scratch as HTML
1908
+ Rendered pages/scratch.html.erb (0.2ms)
1909
+ Completed 200 OK in 1ms (Views: 1.1ms)
1910
+ -----------------------------------------------------------------------
1911
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
1912
+ -----------------------------------------------------------------------
1913
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:17:15 -0500
1914
+ Processing by PagesController#empty as HTML
1915
+ Rendered pages/empty.html.erb (0.0ms)
1916
+ Completed 200 OK in 0ms (Views: 0.2ms)
1917
+ ---------------------------------------------------------------------
1918
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
1919
+ ---------------------------------------------------------------------
1920
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:17:15 -0500
1921
+ Processing by PagesController#scratch as HTML
1922
+ Rendered pages/scratch.html.erb (0.0ms)
1923
+ Completed 200 OK in 0ms (Views: 0.2ms)
1924
+ ---------------------------------------------------------------------
1925
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
1926
+ ---------------------------------------------------------------------
1927
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:17:15 -0500
1928
+ Processing by PagesController#scratch as HTML
1929
+ Rendered pages/scratch.html.erb (0.0ms)
1930
+ Completed 200 OK in 0ms (Views: 0.2ms)
1931
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:17:15 -0500
1932
+ Processing by PagesController#scratch as HTML
1933
+ Rendered pages/scratch.html.erb (0.0ms)
1934
+ Completed 200 OK in 0ms (Views: 0.2ms)
1935
+ --------------------------
1936
+ ScratchpadTest: test_truth
1937
+ --------------------------
1938
+ -----------------------------------------------------------------------
1939
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
1940
+ -----------------------------------------------------------------------
1941
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:19:01 -0500
1942
+ Processing by PagesController#empty as HTML
1943
+ Rendered pages/empty.html.erb (0.7ms)
1944
+ Completed 200 OK in 6ms (Views: 5.7ms)
1945
+ ---------------------------------------------------------------------
1946
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
1947
+ ---------------------------------------------------------------------
1948
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:19:01 -0500
1949
+ Processing by PagesController#scratch as HTML
1950
+ Rendered pages/scratch.html.erb (0.2ms)
1951
+ Completed 200 OK in 1ms (Views: 1.2ms)
1952
+ ---------------------------------------------------------------------
1953
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
1954
+ ---------------------------------------------------------------------
1955
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:19:01 -0500
1956
+ Processing by PagesController#scratch as HTML
1957
+ Rendered pages/scratch.html.erb (0.1ms)
1958
+ Completed 200 OK in 1ms (Views: 0.6ms)
1959
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:19:01 -0500
1960
+ Processing by PagesController#scratch as HTML
1961
+ Rendered pages/scratch.html.erb (0.0ms)
1962
+ Completed 200 OK in 0ms (Views: 0.2ms)
1963
+ -------------------------------------------------------------------------
1964
+ RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
1965
+ -------------------------------------------------------------------------
1966
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:19:01 -0500
1967
+ Processing by PagesController#multiple_scratch as HTML
1968
+ Rendered pages/multiple_scratch.html.erb (0.4ms)
1969
+ Completed 200 OK in 2ms (Views: 1.7ms)
1970
+ -------------------------------------------------------------
1971
+ RenderingTest: test_object_scratchs_should_inspect_the_object
1972
+ -------------------------------------------------------------
1973
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:19:01 -0500
1974
+ Processing by PagesController#scratch_object as HTML
1975
+ Rendered pages/scratch_object.html.erb (4.7ms)
1976
+ Completed 500 Internal Server Error in 6ms
1977
+ -------------------------------------------------------------
1978
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
1979
+ -------------------------------------------------------------
1980
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:19:01 -0500
1981
+ Processing by PagesController#scratch as HTML
1982
+ Rendered pages/scratch.html.erb (0.1ms)
1983
+ Completed 200 OK in 0ms (Views: 0.4ms)
1984
+ --------------------------------------------------------------------------
1985
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
1986
+ --------------------------------------------------------------------------
1987
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:19:01 -0500
1988
+ Processing by PagesController#multiple_scratch as HTML
1989
+ Rendered pages/multiple_scratch.html.erb (0.1ms)
1990
+ Completed 200 OK in 0ms (Views: 0.3ms)
1991
+ -------------------------------------------------------------
1992
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
1993
+ -------------------------------------------------------------
1994
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:19:01 -0500
1995
+ Processing by PagesController#empty as HTML
1996
+ Rendered pages/empty.html.erb (0.0ms)
1997
+ Completed 200 OK in 0ms (Views: 0.3ms)
1998
+ --------------------------
1999
+ ScratchpadTest: test_truth
2000
+ --------------------------
2001
+ -------------------------------------------------------------
2002
+ RenderingTest: test_object_scratchs_should_inspect_the_object
2003
+ -------------------------------------------------------------
2004
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:19:39 -0500
2005
+ Processing by PagesController#scratch_object as HTML
2006
+ Rendered pages/scratch_object.html.erb (1.2ms)
2007
+ Completed 200 OK in 7ms (Views: 6.5ms)
2008
+ -------------------------------------------------------------------------
2009
+ RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
2010
+ -------------------------------------------------------------------------
2011
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:19:39 -0500
2012
+ Processing by PagesController#multiple_scratch as HTML
2013
+ Rendered pages/multiple_scratch.html.erb (0.2ms)
2014
+ Completed 200 OK in 1ms (Views: 1.1ms)
2015
+ --------------------------------------------------------------------------
2016
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
2017
+ --------------------------------------------------------------------------
2018
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:19:39 -0500
2019
+ Processing by PagesController#multiple_scratch as HTML
2020
+ Rendered pages/multiple_scratch.html.erb (0.1ms)
2021
+ Completed 200 OK in 0ms (Views: 0.4ms)
2022
+ -------------------------------------------------------------
2023
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
2024
+ -------------------------------------------------------------
2025
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:19:39 -0500
2026
+ Processing by PagesController#empty as HTML
2027
+ Rendered pages/empty.html.erb (0.2ms)
2028
+ Completed 200 OK in 1ms (Views: 1.0ms)
2029
+ -------------------------------------------------------------
2030
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
2031
+ -------------------------------------------------------------
2032
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:19:39 -0500
2033
+ Processing by PagesController#scratch as HTML
2034
+ Rendered pages/scratch.html.erb (0.2ms)
2035
+ Completed 200 OK in 1ms (Views: 1.0ms)
2036
+ -----------------------------------------------------------------------
2037
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
2038
+ -----------------------------------------------------------------------
2039
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:19:39 -0500
2040
+ Processing by PagesController#empty as HTML
2041
+ Rendered pages/empty.html.erb (0.0ms)
2042
+ Completed 200 OK in 0ms (Views: 0.2ms)
2043
+ ---------------------------------------------------------------------
2044
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
2045
+ ---------------------------------------------------------------------
2046
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:19:39 -0500
2047
+ Processing by PagesController#scratch as HTML
2048
+ Rendered pages/scratch.html.erb (0.0ms)
2049
+ Completed 200 OK in 0ms (Views: 0.2ms)
2050
+ ---------------------------------------------------------------------
2051
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
2052
+ ---------------------------------------------------------------------
2053
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:19:39 -0500
2054
+ Processing by PagesController#scratch as HTML
2055
+ Rendered pages/scratch.html.erb (0.0ms)
2056
+ Completed 200 OK in 0ms (Views: 0.2ms)
2057
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:19:39 -0500
2058
+ Processing by PagesController#scratch as HTML
2059
+ Rendered pages/scratch.html.erb (0.0ms)
2060
+ Completed 200 OK in 0ms (Views: 0.2ms)
2061
+ --------------------------
2062
+ ScratchpadTest: test_truth
2063
+ --------------------------
2064
+ ---------------------------------------------------------------------
2065
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
2066
+ ---------------------------------------------------------------------
2067
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:21:34 -0500
2068
+ Processing by PagesController#scratch as HTML
2069
+ Rendered pages/scratch.html.erb (0.7ms)
2070
+ Completed 200 OK in 6ms (Views: 5.9ms)
2071
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:21:34 -0500
2072
+ Processing by PagesController#scratch as HTML
2073
+ Rendered pages/scratch.html.erb (0.0ms)
2074
+ Completed 200 OK in 0ms (Views: 0.3ms)
2075
+ ---------------------------------------------------------------------
2076
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
2077
+ ---------------------------------------------------------------------
2078
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:21:34 -0500
2079
+ Processing by PagesController#scratch as HTML
2080
+ Rendered pages/scratch.html.erb (0.0ms)
2081
+ Completed 200 OK in 1ms (Views: 0.5ms)
2082
+ -----------------------------------------------------------------------
2083
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
2084
+ -----------------------------------------------------------------------
2085
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:21:34 -0500
2086
+ Processing by PagesController#empty as HTML
2087
+ Rendered pages/empty.html.erb (0.2ms)
2088
+ Completed 200 OK in 1ms (Views: 1.0ms)
2089
+ --------------------------
2090
+ ScratchpadTest: test_truth
2091
+ --------------------------
2092
+ -------------------------------------------------------------
2093
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
2094
+ -------------------------------------------------------------
2095
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:21:34 -0500
2096
+ Processing by PagesController#empty as HTML
2097
+ Rendered pages/empty.html.erb (0.0ms)
2098
+ Completed 200 OK in 0ms (Views: 0.2ms)
2099
+ --------------------------------------------------------------------------
2100
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
2101
+ --------------------------------------------------------------------------
2102
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:21:34 -0500
2103
+ Processing by PagesController#multiple_scratch as HTML
2104
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
2105
+ Completed 200 OK in 1ms (Views: 1.1ms)
2106
+ -------------------------------------------------------------
2107
+ RenderingTest: test_object_scratchs_should_inspect_the_object
2108
+ -------------------------------------------------------------
2109
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:21:34 -0500
2110
+ Processing by PagesController#scratch_object as HTML
2111
+ Rendered pages/scratch_object.html.erb (0.9ms)
2112
+ Completed 200 OK in 2ms (Views: 2.1ms)
2113
+ -------------------------------------------------------------------------
2114
+ RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
2115
+ -------------------------------------------------------------------------
2116
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:21:34 -0500
2117
+ Processing by PagesController#multiple_scratch as HTML
2118
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
2119
+ Completed 200 OK in 0ms (Views: 0.3ms)
2120
+ -------------------------------------------------------------
2121
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
2122
+ -------------------------------------------------------------
2123
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:21:34 -0500
2124
+ Processing by PagesController#scratch as HTML
2125
+ Rendered pages/scratch.html.erb (0.0ms)
2126
+ Completed 200 OK in 0ms (Views: 0.3ms)
2127
+ -----------------------------------------------------------------------
2128
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
2129
+ -----------------------------------------------------------------------
2130
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:22:27 -0500
2131
+ Processing by PagesController#empty as HTML
2132
+ Rendered pages/empty.html.erb (0.7ms)
2133
+ Completed 200 OK in 6ms (Views: 6.2ms)
2134
+ ---------------------------------------------------------------------
2135
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
2136
+ ---------------------------------------------------------------------
2137
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:22:27 -0500
2138
+ Processing by PagesController#scratch as HTML
2139
+ Rendered pages/scratch.html.erb (0.3ms)
2140
+ Completed 200 OK in 1ms (Views: 1.2ms)
2141
+ ---------------------------------------------------------------------
2142
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
2143
+ ---------------------------------------------------------------------
2144
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:22:27 -0500
2145
+ Processing by PagesController#scratch as HTML
2146
+ Rendered pages/scratch.html.erb (0.0ms)
2147
+ Completed 200 OK in 0ms (Views: 0.3ms)
2148
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:22:27 -0500
2149
+ Processing by PagesController#scratch as HTML
2150
+ Rendered pages/scratch.html.erb (0.0ms)
2151
+ Completed 200 OK in 0ms (Views: 0.2ms)
2152
+ -------------------------------------------------------------
2153
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
2154
+ -------------------------------------------------------------
2155
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:22:27 -0500
2156
+ Processing by PagesController#scratch as HTML
2157
+ Rendered pages/scratch.html.erb (0.0ms)
2158
+ Completed 200 OK in 0ms (Views: 0.2ms)
2159
+ -------------------------------------------------------------
2160
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
2161
+ -------------------------------------------------------------
2162
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:22:27 -0500
2163
+ Processing by PagesController#empty as HTML
2164
+ Rendered pages/empty.html.erb (0.1ms)
2165
+ Completed 200 OK in 0ms (Views: 0.2ms)
2166
+ --------------------------------------------------------------------------
2167
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
2168
+ --------------------------------------------------------------------------
2169
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:22:27 -0500
2170
+ Processing by PagesController#multiple_scratch as HTML
2171
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
2172
+ Completed 200 OK in 1ms (Views: 1.1ms)
2173
+ -------------------------------------------------------------------------
2174
+ RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
2175
+ -------------------------------------------------------------------------
2176
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:22:27 -0500
2177
+ Processing by PagesController#multiple_scratch as HTML
2178
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
2179
+ Completed 200 OK in 0ms (Views: 0.3ms)
2180
+ -------------------------------------------------------------
2181
+ RenderingTest: test_object_scratchs_should_inspect_the_object
2182
+ -------------------------------------------------------------
2183
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:22:27 -0500
2184
+ Processing by PagesController#scratch_object as HTML
2185
+ Rendered pages/scratch_object.html.erb (0.8ms)
2186
+ Completed 200 OK in 2ms (Views: 1.6ms)
2187
+ --------------------------
2188
+ ScratchpadTest: test_truth
2189
+ --------------------------
2190
+ --------------------------------------------------------------------------
2191
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
2192
+ --------------------------------------------------------------------------
2193
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:23:03 -0500
2194
+ Processing by PagesController#multiple_scratch as HTML
2195
+ Rendered pages/multiple_scratch.html.erb (0.8ms)
2196
+ Completed 200 OK in 7ms (Views: 6.5ms)
2197
+ -------------------------------------------------------------------------
2198
+ RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
2199
+ -------------------------------------------------------------------------
2200
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:23:03 -0500
2201
+ Processing by PagesController#multiple_scratch as HTML
2202
+ Rendered pages/multiple_scratch.html.erb (0.1ms)
2203
+ Completed 200 OK in 0ms (Views: 0.3ms)
2204
+ -------------------------------------------------------------
2205
+ RenderingTest: test_object_scratchs_should_inspect_the_object
2206
+ -------------------------------------------------------------
2207
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:23:03 -0500
2208
+ Processing by PagesController#scratch_object as HTML
2209
+ Rendered pages/scratch_object.html.erb (0.7ms)
2210
+ Completed 200 OK in 2ms (Views: 1.5ms)
2211
+ -------------------------------------------------------------
2212
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
2213
+ -------------------------------------------------------------
2214
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:23:03 -0500
2215
+ Processing by PagesController#empty as HTML
2216
+ Rendered pages/empty.html.erb (0.3ms)
2217
+ Completed 200 OK in 2ms (Views: 1.7ms)
2218
+ -------------------------------------------------------------
2219
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
2220
+ -------------------------------------------------------------
2221
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:23:03 -0500
2222
+ Processing by PagesController#scratch as HTML
2223
+ Rendered pages/scratch.html.erb (0.3ms)
2224
+ Completed 200 OK in 1ms (Views: 1.4ms)
2225
+ ---------------------------------------------------------------------
2226
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
2227
+ ---------------------------------------------------------------------
2228
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:23:03 -0500
2229
+ Processing by PagesController#scratch as HTML
2230
+ Rendered pages/scratch.html.erb (0.1ms)
2231
+ Completed 200 OK in 0ms (Views: 0.3ms)
2232
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:23:03 -0500
2233
+ Processing by PagesController#scratch as HTML
2234
+ Rendered pages/scratch.html.erb (0.0ms)
2235
+ Completed 200 OK in 0ms (Views: 0.2ms)
2236
+ -----------------------------------------------------------------------
2237
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
2238
+ -----------------------------------------------------------------------
2239
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:23:03 -0500
2240
+ Processing by PagesController#empty as HTML
2241
+ Rendered pages/empty.html.erb (0.0ms)
2242
+ Completed 200 OK in 0ms (Views: 0.3ms)
2243
+ ---------------------------------------------------------------------
2244
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
2245
+ ---------------------------------------------------------------------
2246
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:23:03 -0500
2247
+ Processing by PagesController#scratch as HTML
2248
+ Rendered pages/scratch.html.erb (0.0ms)
2249
+ Completed 200 OK in 0ms (Views: 0.3ms)
2250
+ --------------------------
2251
+ ScratchpadTest: test_truth
2252
+ --------------------------
2253
+ --------------------------
2254
+ ScratchpadTest: test_truth
2255
+ --------------------------
2256
+ ---------------------------------------------------------------------
2257
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
2258
+ ---------------------------------------------------------------------
2259
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:24:13 -0500
2260
+ Processing by PagesController#scratch as HTML
2261
+ Rendered pages/scratch.html.erb (0.7ms)
2262
+ Completed 200 OK in 6ms (Views: 5.4ms)
2263
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:24:13 -0500
2264
+ Processing by PagesController#scratch as HTML
2265
+ Rendered pages/scratch.html.erb (0.0ms)
2266
+ Completed 200 OK in 0ms (Views: 0.2ms)
2267
+ -----------------------------------------------------------------------
2268
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
2269
+ -----------------------------------------------------------------------
2270
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:24:13 -0500
2271
+ Processing by PagesController#empty as HTML
2272
+ Rendered pages/empty.html.erb (0.2ms)
2273
+ Completed 200 OK in 1ms (Views: 1.0ms)
2274
+ ---------------------------------------------------------------------
2275
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
2276
+ ---------------------------------------------------------------------
2277
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:24:13 -0500
2278
+ Processing by PagesController#scratch as HTML
2279
+ Rendered pages/scratch.html.erb (0.0ms)
2280
+ Completed 200 OK in 0ms (Views: 0.2ms)
2281
+ --------------------------------------------------------------------------
2282
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratchs
2283
+ --------------------------------------------------------------------------
2284
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:24:13 -0500
2285
+ Processing by PagesController#multiple_scratch as HTML
2286
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
2287
+ Completed 200 OK in 1ms (Views: 1.1ms)
2288
+ -------------------------------------------------------------
2289
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
2290
+ -------------------------------------------------------------
2291
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:24:13 -0500
2292
+ Processing by PagesController#empty as HTML
2293
+ Rendered pages/empty.html.erb (0.0ms)
2294
+ Completed 200 OK in 0ms (Views: 0.3ms)
2295
+ -------------------------------------------------------------------------
2296
+ RenderingTest: test_multiple_scratchs_should_render_for_multiple_scratchs
2297
+ -------------------------------------------------------------------------
2298
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:24:13 -0500
2299
+ Processing by PagesController#multiple_scratch as HTML
2300
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
2301
+ Completed 200 OK in 0ms (Views: 0.2ms)
2302
+ -------------------------------------------------------------
2303
+ RenderingTest: test_object_scratchs_should_inspect_the_object
2304
+ -------------------------------------------------------------
2305
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:24:13 -0500
2306
+ Processing by PagesController#scratch_object as HTML
2307
+ Rendered pages/scratch_object.html.erb (0.7ms)
2308
+ Completed 200 OK in 2ms (Views: 1.5ms)
2309
+ -------------------------------------------------------------
2310
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
2311
+ -------------------------------------------------------------
2312
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:24:13 -0500
2313
+ Processing by PagesController#scratch as HTML
2314
+ Rendered pages/scratch.html.erb (0.0ms)
2315
+ Completed 200 OK in 0ms (Views: 0.3ms)
2316
+ ---------------------------------------------------------------------
2317
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
2318
+ ---------------------------------------------------------------------
2319
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:25:19 -0500
2320
+ Processing by PagesController#scratch as HTML
2321
+ Rendered pages/scratch.html.erb (0.7ms)
2322
+ Completed 200 OK in 6ms (Views: 5.8ms)
2323
+ ---------------------------------------------------------------------
2324
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
2325
+ ---------------------------------------------------------------------
2326
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:25:19 -0500
2327
+ Processing by PagesController#scratch as HTML
2328
+ Rendered pages/scratch.html.erb (0.0ms)
2329
+ Completed 200 OK in 0ms (Views: 0.3ms)
2330
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:25:19 -0500
2331
+ Processing by PagesController#scratch as HTML
2332
+ Rendered pages/scratch.html.erb (0.0ms)
2333
+ Completed 200 OK in 0ms (Views: 0.2ms)
2334
+ -----------------------------------------------------------------------
2335
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
2336
+ -----------------------------------------------------------------------
2337
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:25:19 -0500
2338
+ Processing by PagesController#empty as HTML
2339
+ Rendered pages/empty.html.erb (0.2ms)
2340
+ Completed 200 OK in 1ms (Views: 1.0ms)
2341
+ ---------------------------------------------------------------------------
2342
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
2343
+ ---------------------------------------------------------------------------
2344
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:25:19 -0500
2345
+ Processing by PagesController#multiple_scratch as HTML
2346
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
2347
+ Completed 200 OK in 1ms (Views: 1.1ms)
2348
+ -------------------------------------------------------------
2349
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
2350
+ -------------------------------------------------------------
2351
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:25:19 -0500
2352
+ Processing by PagesController#scratch as HTML
2353
+ Rendered pages/scratch.html.erb (0.1ms)
2354
+ Completed 200 OK in 0ms (Views: 0.3ms)
2355
+ -------------------------------------------------------------
2356
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
2357
+ -------------------------------------------------------------
2358
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:25:19 -0500
2359
+ Processing by PagesController#empty as HTML
2360
+ Rendered pages/empty.html.erb (0.0ms)
2361
+ Completed 200 OK in 0ms (Views: 0.2ms)
2362
+ --------------------------------------------------------------
2363
+ RenderingTest: test_object_scratches_should_inspect_the_object
2364
+ --------------------------------------------------------------
2365
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:25:19 -0500
2366
+ Processing by PagesController#scratch_object as HTML
2367
+ Rendered pages/scratch_object.html.erb (0.7ms)
2368
+ Completed 200 OK in 1ms (Views: 1.4ms)
2369
+ ---------------------------------------------------------------------------
2370
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
2371
+ ---------------------------------------------------------------------------
2372
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:25:19 -0500
2373
+ Processing by PagesController#multiple_scratch as HTML
2374
+ Rendered pages/multiple_scratch.html.erb (0.1ms)
2375
+ Completed 200 OK in 0ms (Views: 0.4ms)
2376
+ --------------------------
2377
+ ScratchpadTest: test_truth
2378
+ --------------------------
2379
+ ---------------------------------------------------------------------------
2380
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
2381
+ ---------------------------------------------------------------------------
2382
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:26:27 -0500
2383
+ Processing by PagesController#multiple_scratch as HTML
2384
+ Rendered pages/multiple_scratch.html.erb (0.7ms)
2385
+ Completed 200 OK in 6ms (Views: 5.5ms)
2386
+ -------------------------------------------------------------
2387
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
2388
+ -------------------------------------------------------------
2389
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:26:27 -0500
2390
+ Processing by PagesController#scratch as HTML
2391
+ Rendered pages/scratch.html.erb (0.2ms)
2392
+ Completed 200 OK in 1ms (Views: 1.1ms)
2393
+ --------------------------------------------------------------
2394
+ RenderingTest: test_object_scratches_should_inspect_the_object
2395
+ --------------------------------------------------------------
2396
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:26:27 -0500
2397
+ Processing by PagesController#scratch_object as HTML
2398
+ Rendered pages/scratch_object.html.erb (0.6ms)
2399
+ Completed 200 OK in 1ms (Views: 1.4ms)
2400
+ ---------------------------------------------------------------------------
2401
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
2402
+ ---------------------------------------------------------------------------
2403
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:26:27 -0500
2404
+ Processing by PagesController#multiple_scratch as HTML
2405
+ Rendered pages/multiple_scratch.html.erb (0.1ms)
2406
+ Completed 200 OK in 0ms (Views: 0.2ms)
2407
+ -------------------------------------------------------------
2408
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
2409
+ -------------------------------------------------------------
2410
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:26:27 -0500
2411
+ Processing by PagesController#empty as HTML
2412
+ Rendered pages/empty.html.erb (0.2ms)
2413
+ Completed 200 OK in 1ms (Views: 1.0ms)
2414
+ --------------------------
2415
+ ScratchpadTest: test_truth
2416
+ --------------------------
2417
+ ---------------------------------------------------------------------
2418
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
2419
+ ---------------------------------------------------------------------
2420
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:26:27 -0500
2421
+ Processing by PagesController#scratch as HTML
2422
+ Rendered pages/scratch.html.erb (0.1ms)
2423
+ Completed 200 OK in 0ms (Views: 0.2ms)
2424
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:26:27 -0500
2425
+ Processing by PagesController#scratch as HTML
2426
+ Rendered pages/scratch.html.erb (0.0ms)
2427
+ Completed 200 OK in 0ms (Views: 0.2ms)
2428
+ ---------------------------------------------------------------------
2429
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
2430
+ ---------------------------------------------------------------------
2431
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:26:27 -0500
2432
+ Processing by PagesController#scratch as HTML
2433
+ Rendered pages/scratch.html.erb (0.0ms)
2434
+ Completed 200 OK in 0ms (Views: 0.2ms)
2435
+ -----------------------------------------------------------------------
2436
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
2437
+ -----------------------------------------------------------------------
2438
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:26:27 -0500
2439
+ Processing by PagesController#empty as HTML
2440
+ Rendered pages/empty.html.erb (0.0ms)
2441
+ Completed 200 OK in 0ms (Views: 0.2ms)
2442
+ ---------------------------------------------------------------------
2443
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
2444
+ ---------------------------------------------------------------------
2445
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:30:47 -0500
2446
+ Processing by PagesController#scratch as HTML
2447
+ Rendered pages/scratch.html.erb (0.8ms)
2448
+ Completed 200 OK in 7ms (Views: 6.5ms)
2449
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:30:47 -0500
2450
+ Processing by PagesController#scratch as HTML
2451
+ Rendered pages/scratch.html.erb (0.1ms)
2452
+ Completed 200 OK in 0ms (Views: 0.3ms)
2453
+ ---------------------------------------------------------------------
2454
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
2455
+ ---------------------------------------------------------------------
2456
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:30:47 -0500
2457
+ Processing by PagesController#scratch as HTML
2458
+ Rendered pages/scratch.html.erb (0.0ms)
2459
+ Completed 200 OK in 0ms (Views: 0.3ms)
2460
+ -----------------------------------------------------------------------
2461
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
2462
+ -----------------------------------------------------------------------
2463
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:30:47 -0500
2464
+ Processing by PagesController#empty as HTML
2465
+ Rendered pages/empty.html.erb (0.2ms)
2466
+ Completed 200 OK in 1ms (Views: 1.1ms)
2467
+ --------------------------
2468
+ ScratchpadTest: test_truth
2469
+ --------------------------
2470
+ --------------------------------------------------------------
2471
+ RenderingTest: test_object_scratches_should_inspect_the_object
2472
+ --------------------------------------------------------------
2473
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:30:47 -0500
2474
+ Processing by PagesController#scratch_object as HTML
2475
+ Rendered pages/scratch_object.html.erb (0.7ms)
2476
+ Completed 200 OK in 2ms (Views: 1.5ms)
2477
+ -------------------------------------------------------------
2478
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
2479
+ -------------------------------------------------------------
2480
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:30:47 -0500
2481
+ Processing by PagesController#scratch as HTML
2482
+ Rendered pages/scratch.html.erb (0.1ms)
2483
+ Completed 200 OK in 0ms (Views: 0.2ms)
2484
+ ---------------------------------------------------------------------------
2485
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
2486
+ ---------------------------------------------------------------------------
2487
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:30:47 -0500
2488
+ Processing by PagesController#multiple_scratch as HTML
2489
+ Rendered pages/multiple_scratch.html.erb (0.2ms)
2490
+ Completed 200 OK in 1ms (Views: 1.1ms)
2491
+ -------------------------------------------------------------
2492
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
2493
+ -------------------------------------------------------------
2494
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:30:47 -0500
2495
+ Processing by PagesController#empty as HTML
2496
+ Rendered pages/empty.html.erb (0.1ms)
2497
+ Completed 200 OK in 0ms (Views: 0.4ms)
2498
+ ---------------------------------------------------------------------------
2499
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
2500
+ ---------------------------------------------------------------------------
2501
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:30:47 -0500
2502
+ Processing by PagesController#multiple_scratch as HTML
2503
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
2504
+ Completed 200 OK in 0ms (Views: 0.3ms)
2505
+ ---------------------------------------------------------------------------
2506
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
2507
+ ---------------------------------------------------------------------------
2508
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:31:00 -0500
2509
+ Processing by PagesController#multiple_scratch as HTML
2510
+ Rendered pages/multiple_scratch.html.erb (0.8ms)
2511
+ Completed 200 OK in 6ms (Views: 6.3ms)
2512
+ --------------------------------------------------------------
2513
+ RenderingTest: test_object_scratches_should_inspect_the_object
2514
+ --------------------------------------------------------------
2515
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:31:00 -0500
2516
+ Processing by PagesController#scratch_object as HTML
2517
+ Rendered pages/scratch_object.html.erb (0.6ms)
2518
+ Completed 200 OK in 2ms (Views: 1.8ms)
2519
+ -------------------------------------------------------------
2520
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
2521
+ -------------------------------------------------------------
2522
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:31:00 -0500
2523
+ Processing by PagesController#scratch as HTML
2524
+ Rendered pages/scratch.html.erb (0.2ms)
2525
+ Completed 200 OK in 1ms (Views: 1.0ms)
2526
+ ---------------------------------------------------------------------------
2527
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
2528
+ ---------------------------------------------------------------------------
2529
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:31:00 -0500
2530
+ Processing by PagesController#multiple_scratch as HTML
2531
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
2532
+ Completed 200 OK in 0ms (Views: 0.2ms)
2533
+ -------------------------------------------------------------
2534
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
2535
+ -------------------------------------------------------------
2536
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:31:00 -0500
2537
+ Processing by PagesController#empty as HTML
2538
+ Rendered pages/empty.html.erb (0.2ms)
2539
+ Completed 200 OK in 1ms (Views: 1.0ms)
2540
+ --------------------------
2541
+ ScratchpadTest: test_truth
2542
+ --------------------------
2543
+ ---------------------------------------------------------------------
2544
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
2545
+ ---------------------------------------------------------------------
2546
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:31:00 -0500
2547
+ Processing by PagesController#scratch as HTML
2548
+ Rendered pages/scratch.html.erb (0.0ms)
2549
+ Completed 200 OK in 0ms (Views: 0.2ms)
2550
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:31:00 -0500
2551
+ Processing by PagesController#scratch as HTML
2552
+ Rendered pages/scratch.html.erb (0.0ms)
2553
+ Completed 200 OK in 0ms (Views: 0.2ms)
2554
+ -----------------------------------------------------------------------
2555
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
2556
+ -----------------------------------------------------------------------
2557
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:31:00 -0500
2558
+ Processing by PagesController#empty as HTML
2559
+ Rendered pages/empty.html.erb (0.0ms)
2560
+ Completed 200 OK in 0ms (Views: 0.2ms)
2561
+ ---------------------------------------------------------------------
2562
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
2563
+ ---------------------------------------------------------------------
2564
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:31:00 -0500
2565
+ Processing by PagesController#scratch as HTML
2566
+ Rendered pages/scratch.html.erb (0.0ms)
2567
+ Completed 200 OK in 0ms (Views: 0.3ms)
2568
+ -----------------------------------------------------------------------
2569
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
2570
+ -----------------------------------------------------------------------
2571
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:31:35 -0500
2572
+ Processing by PagesController#empty as HTML
2573
+ Rendered pages/empty.html.erb (0.7ms)
2574
+ Completed 200 OK in 6ms (Views: 5.9ms)
2575
+ ---------------------------------------------------------------------
2576
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
2577
+ ---------------------------------------------------------------------
2578
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:31:35 -0500
2579
+ Processing by PagesController#scratch as HTML
2580
+ Rendered pages/scratch.html.erb (0.2ms)
2581
+ Completed 200 OK in 1ms (Views: 1.1ms)
2582
+ ---------------------------------------------------------------------
2583
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
2584
+ ---------------------------------------------------------------------
2585
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:31:35 -0500
2586
+ Processing by PagesController#scratch as HTML
2587
+ Rendered pages/scratch.html.erb (0.0ms)
2588
+ Completed 200 OK in 0ms (Views: 0.3ms)
2589
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:31:35 -0500
2590
+ Processing by PagesController#scratch as HTML
2591
+ Rendered pages/scratch.html.erb (0.0ms)
2592
+ Completed 200 OK in 0ms (Views: 0.2ms)
2593
+ --------------------------
2594
+ ScratchpadTest: test_truth
2595
+ --------------------------
2596
+ -------------------------------------------------------------
2597
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
2598
+ -------------------------------------------------------------
2599
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:31:35 -0500
2600
+ Processing by PagesController#empty as HTML
2601
+ Rendered pages/empty.html.erb (0.0ms)
2602
+ Completed 200 OK in 0ms (Views: 0.2ms)
2603
+ ---------------------------------------------------------------------------
2604
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
2605
+ ---------------------------------------------------------------------------
2606
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:31:35 -0500
2607
+ Processing by PagesController#multiple_scratch as HTML
2608
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
2609
+ Completed 200 OK in 1ms (Views: 1.1ms)
2610
+ -------------------------------------------------------------
2611
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
2612
+ -------------------------------------------------------------
2613
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:31:35 -0500
2614
+ Processing by PagesController#scratch as HTML
2615
+ Rendered pages/scratch.html.erb (0.0ms)
2616
+ Completed 200 OK in 0ms (Views: 0.2ms)
2617
+ --------------------------------------------------------------
2618
+ RenderingTest: test_object_scratches_should_inspect_the_object
2619
+ --------------------------------------------------------------
2620
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:31:35 -0500
2621
+ Processing by PagesController#scratch_object as HTML
2622
+ Rendered pages/scratch_object.html.erb (0.7ms)
2623
+ Completed 200 OK in 2ms (Views: 1.5ms)
2624
+ ---------------------------------------------------------------------------
2625
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
2626
+ ---------------------------------------------------------------------------
2627
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:31:35 -0500
2628
+ Processing by PagesController#multiple_scratch as HTML
2629
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
2630
+ Completed 200 OK in 0ms (Views: 0.2ms)
2631
+ --------------------------
2632
+ ScratchpadTest: test_truth
2633
+ --------------------------
2634
+ ---------------------------------------------------------------------------
2635
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
2636
+ ---------------------------------------------------------------------------
2637
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:31:47 -0500
2638
+ Processing by PagesController#multiple_scratch as HTML
2639
+ Rendered pages/multiple_scratch.html.erb (0.8ms)
2640
+ Completed 200 OK in 6ms (Views: 6.1ms)
2641
+ -------------------------------------------------------------
2642
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
2643
+ -------------------------------------------------------------
2644
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:31:47 -0500
2645
+ Processing by PagesController#empty as HTML
2646
+ Rendered pages/empty.html.erb (0.2ms)
2647
+ Completed 200 OK in 1ms (Views: 1.1ms)
2648
+ -------------------------------------------------------------
2649
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
2650
+ -------------------------------------------------------------
2651
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:31:47 -0500
2652
+ Processing by PagesController#scratch as HTML
2653
+ Rendered pages/scratch.html.erb (0.2ms)
2654
+ Completed 200 OK in 1ms (Views: 1.1ms)
2655
+ ---------------------------------------------------------------------------
2656
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
2657
+ ---------------------------------------------------------------------------
2658
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:31:47 -0500
2659
+ Processing by PagesController#multiple_scratch as HTML
2660
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
2661
+ Completed 200 OK in 0ms (Views: 0.3ms)
2662
+ --------------------------------------------------------------
2663
+ RenderingTest: test_object_scratches_should_inspect_the_object
2664
+ --------------------------------------------------------------
2665
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:31:47 -0500
2666
+ Processing by PagesController#scratch_object as HTML
2667
+ Rendered pages/scratch_object.html.erb (0.7ms)
2668
+ Completed 200 OK in 2ms (Views: 1.5ms)
2669
+ ---------------------------------------------------------------------
2670
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
2671
+ ---------------------------------------------------------------------
2672
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:31:47 -0500
2673
+ Processing by PagesController#scratch as HTML
2674
+ Rendered pages/scratch.html.erb (0.1ms)
2675
+ Completed 200 OK in 0ms (Views: 0.3ms)
2676
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:31:47 -0500
2677
+ Processing by PagesController#scratch as HTML
2678
+ Rendered pages/scratch.html.erb (0.0ms)
2679
+ Completed 200 OK in 0ms (Views: 0.2ms)
2680
+ -----------------------------------------------------------------------
2681
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
2682
+ -----------------------------------------------------------------------
2683
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:31:47 -0500
2684
+ Processing by PagesController#empty as HTML
2685
+ Rendered pages/empty.html.erb (0.0ms)
2686
+ Completed 200 OK in 0ms (Views: 0.2ms)
2687
+ ---------------------------------------------------------------------
2688
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
2689
+ ---------------------------------------------------------------------
2690
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:31:47 -0500
2691
+ Processing by PagesController#scratch as HTML
2692
+ Rendered pages/scratch.html.erb (0.0ms)
2693
+ Completed 200 OK in 0ms (Views: 0.2ms)
2694
+ -------------------------------------------------------------
2695
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
2696
+ -------------------------------------------------------------
2697
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:33:29 -0500
2698
+ Processing by PagesController#empty as HTML
2699
+ Rendered pages/empty.html.erb (0.9ms)
2700
+ Completed 200 OK in 8ms (Views: 8.3ms)
2701
+ --------------------------------------------------------------
2702
+ RenderingTest: test_object_scratches_should_inspect_the_object
2703
+ --------------------------------------------------------------
2704
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:33:29 -0500
2705
+ Processing by PagesController#scratch_object as HTML
2706
+ Rendered pages/scratch_object.html.erb (0.7ms)
2707
+ Completed 200 OK in 2ms (Views: 1.6ms)
2708
+ ---------------------------------------------------------------------------
2709
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
2710
+ ---------------------------------------------------------------------------
2711
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:33:29 -0500
2712
+ Processing by PagesController#multiple_scratch as HTML
2713
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
2714
+ Completed 200 OK in 1ms (Views: 1.1ms)
2715
+ ---------------------------------------------------------------------------
2716
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
2717
+ ---------------------------------------------------------------------------
2718
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:33:29 -0500
2719
+ Processing by PagesController#multiple_scratch as HTML
2720
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
2721
+ Completed 200 OK in 0ms (Views: 0.3ms)
2722
+ -------------------------------------------------------------
2723
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
2724
+ -------------------------------------------------------------
2725
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:33:29 -0500
2726
+ Processing by PagesController#scratch as HTML
2727
+ Rendered pages/scratch.html.erb (0.3ms)
2728
+ Completed 200 OK in 1ms (Views: 1.1ms)
2729
+ ---------------------------------------------------------------------
2730
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
2731
+ ---------------------------------------------------------------------
2732
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:33:29 -0500
2733
+ Processing by PagesController#scratch as HTML
2734
+ Rendered pages/scratch.html.erb (0.0ms)
2735
+ Completed 200 OK in 0ms (Views: 0.3ms)
2736
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:33:29 -0500
2737
+ Processing by PagesController#scratch as HTML
2738
+ Rendered pages/scratch.html.erb (0.0ms)
2739
+ Completed 200 OK in 0ms (Views: 0.2ms)
2740
+ ---------------------------------------------------------------------
2741
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
2742
+ ---------------------------------------------------------------------
2743
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:33:29 -0500
2744
+ Processing by PagesController#scratch as HTML
2745
+ Rendered pages/scratch.html.erb (0.0ms)
2746
+ Completed 200 OK in 0ms (Views: 0.2ms)
2747
+ -----------------------------------------------------------------------
2748
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
2749
+ -----------------------------------------------------------------------
2750
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:33:29 -0500
2751
+ Processing by PagesController#empty as HTML
2752
+ Rendered pages/empty.html.erb (0.0ms)
2753
+ Completed 200 OK in 0ms (Views: 0.2ms)
2754
+ --------------------------
2755
+ ScratchpadTest: test_truth
2756
+ --------------------------
2757
+ --------------------------
2758
+ ScratchpadTest: test_truth
2759
+ --------------------------
2760
+ -------------------------------------------------------------
2761
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
2762
+ -------------------------------------------------------------
2763
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:34:28 -0500
2764
+ Processing by PagesController#scratch as HTML
2765
+ Rendered pages/scratch.html.erb (0.7ms)
2766
+ Completed 200 OK in 6ms (Views: 6.1ms)
2767
+ --------------------------------------------------------------
2768
+ RenderingTest: test_object_scratches_should_inspect_the_object
2769
+ --------------------------------------------------------------
2770
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:34:28 -0500
2771
+ Processing by PagesController#scratch_object as HTML
2772
+ Rendered pages/scratch_object.html.erb (0.7ms)
2773
+ Completed 200 OK in 1ms (Views: 1.4ms)
2774
+ ---------------------------------------------------------------------------
2775
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
2776
+ ---------------------------------------------------------------------------
2777
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:34:28 -0500
2778
+ Processing by PagesController#multiple_scratch as HTML
2779
+ Rendered pages/multiple_scratch.html.erb (0.2ms)
2780
+ Completed 200 OK in 1ms (Views: 1.0ms)
2781
+ ---------------------------------------------------------------------------
2782
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
2783
+ ---------------------------------------------------------------------------
2784
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:34:28 -0500
2785
+ Processing by PagesController#multiple_scratch as HTML
2786
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
2787
+ Completed 200 OK in 0ms (Views: 0.2ms)
2788
+ -------------------------------------------------------------
2789
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
2790
+ -------------------------------------------------------------
2791
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:34:28 -0500
2792
+ Processing by PagesController#empty as HTML
2793
+ Rendered pages/empty.html.erb (0.2ms)
2794
+ Completed 200 OK in 1ms (Views: 1.1ms)
2795
+ ---------------------------------------------------------------------
2796
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
2797
+ ---------------------------------------------------------------------
2798
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:34:28 -0500
2799
+ Processing by PagesController#scratch as HTML
2800
+ Rendered pages/scratch.html.erb (0.1ms)
2801
+ Completed 200 OK in 0ms (Views: 0.3ms)
2802
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:34:28 -0500
2803
+ Processing by PagesController#scratch as HTML
2804
+ Rendered pages/scratch.html.erb (0.0ms)
2805
+ Completed 200 OK in 0ms (Views: 0.2ms)
2806
+ -----------------------------------------------------------------------
2807
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
2808
+ -----------------------------------------------------------------------
2809
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:34:28 -0500
2810
+ Processing by PagesController#empty as HTML
2811
+ Rendered pages/empty.html.erb (0.0ms)
2812
+ Completed 200 OK in 0ms (Views: 0.2ms)
2813
+ ---------------------------------------------------------------------
2814
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
2815
+ ---------------------------------------------------------------------
2816
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:34:28 -0500
2817
+ Processing by PagesController#scratch as HTML
2818
+ Rendered pages/scratch.html.erb (0.0ms)
2819
+ Completed 200 OK in 0ms (Views: 0.2ms)
2820
+ --------------------------
2821
+ ScratchpadTest: test_truth
2822
+ --------------------------
2823
+ --------------------------------------------------------------
2824
+ RenderingTest: test_object_scratches_should_inspect_the_object
2825
+ --------------------------------------------------------------
2826
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:34:40 -0500
2827
+ Processing by PagesController#scratch_object as HTML
2828
+ Rendered pages/scratch_object.html.erb (1.2ms)
2829
+ Completed 200 OK in 6ms (Views: 6.0ms)
2830
+ ---------------------------------------------------------------------------
2831
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
2832
+ ---------------------------------------------------------------------------
2833
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:34:40 -0500
2834
+ Processing by PagesController#multiple_scratch as HTML
2835
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
2836
+ Completed 200 OK in 1ms (Views: 1.1ms)
2837
+ ---------------------------------------------------------------------------
2838
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
2839
+ ---------------------------------------------------------------------------
2840
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:34:40 -0500
2841
+ Processing by PagesController#multiple_scratch as HTML
2842
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
2843
+ Completed 200 OK in 0ms (Views: 0.2ms)
2844
+ -------------------------------------------------------------
2845
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
2846
+ -------------------------------------------------------------
2847
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:34:40 -0500
2848
+ Processing by PagesController#empty as HTML
2849
+ Rendered pages/empty.html.erb (0.2ms)
2850
+ Completed 200 OK in 1ms (Views: 1.0ms)
2851
+ -------------------------------------------------------------
2852
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
2853
+ -------------------------------------------------------------
2854
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:34:40 -0500
2855
+ Processing by PagesController#scratch as HTML
2856
+ Rendered pages/scratch.html.erb (0.3ms)
2857
+ Completed 200 OK in 1ms (Views: 1.0ms)
2858
+ ---------------------------------------------------------------------
2859
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
2860
+ ---------------------------------------------------------------------
2861
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:34:40 -0500
2862
+ Processing by PagesController#scratch as HTML
2863
+ Rendered pages/scratch.html.erb (0.0ms)
2864
+ Completed 200 OK in 0ms (Views: 0.3ms)
2865
+ ---------------------------------------------------------------------
2866
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
2867
+ ---------------------------------------------------------------------
2868
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:34:40 -0500
2869
+ Processing by PagesController#scratch as HTML
2870
+ Rendered pages/scratch.html.erb (0.0ms)
2871
+ Completed 200 OK in 0ms (Views: 0.2ms)
2872
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:34:40 -0500
2873
+ Processing by PagesController#scratch as HTML
2874
+ Rendered pages/scratch.html.erb (0.0ms)
2875
+ Completed 200 OK in 0ms (Views: 0.2ms)
2876
+ -----------------------------------------------------------------------
2877
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
2878
+ -----------------------------------------------------------------------
2879
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:34:40 -0500
2880
+ Processing by PagesController#empty as HTML
2881
+ Rendered pages/empty.html.erb (0.0ms)
2882
+ Completed 200 OK in 0ms (Views: 0.2ms)
2883
+ --------------------------------------------------------------
2884
+ RenderingTest: test_object_scratches_should_inspect_the_object
2885
+ --------------------------------------------------------------
2886
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:34:58 -0500
2887
+ Processing by PagesController#scratch_object as HTML
2888
+ Rendered pages/scratch_object.html.erb (1.1ms)
2889
+ Completed 200 OK in 6ms (Views: 6.4ms)
2890
+ ---------------------------------------------------------------------------
2891
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
2892
+ ---------------------------------------------------------------------------
2893
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:34:58 -0500
2894
+ Processing by PagesController#multiple_scratch as HTML
2895
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
2896
+ Completed 200 OK in 1ms (Views: 1.0ms)
2897
+ -------------------------------------------------------------
2898
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
2899
+ -------------------------------------------------------------
2900
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:34:58 -0500
2901
+ Processing by PagesController#empty as HTML
2902
+ Rendered pages/empty.html.erb (0.2ms)
2903
+ Completed 200 OK in 1ms (Views: 1.0ms)
2904
+ ---------------------------------------------------------------------------
2905
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
2906
+ ---------------------------------------------------------------------------
2907
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:34:58 -0500
2908
+ Processing by PagesController#multiple_scratch as HTML
2909
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
2910
+ Completed 200 OK in 0ms (Views: 0.2ms)
2911
+ -------------------------------------------------------------
2912
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
2913
+ -------------------------------------------------------------
2914
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:34:58 -0500
2915
+ Processing by PagesController#scratch as HTML
2916
+ Rendered pages/scratch.html.erb (0.2ms)
2917
+ Completed 200 OK in 1ms (Views: 1.0ms)
2918
+ --------------------------
2919
+ ScratchpadTest: test_truth
2920
+ --------------------------
2921
+ ---------------------------------------------------------------------
2922
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
2923
+ ---------------------------------------------------------------------
2924
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:34:58 -0500
2925
+ Processing by PagesController#scratch as HTML
2926
+ Rendered pages/scratch.html.erb (0.0ms)
2927
+ Completed 200 OK in 0ms (Views: 0.2ms)
2928
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:34:58 -0500
2929
+ Processing by PagesController#scratch as HTML
2930
+ Rendered pages/scratch.html.erb (0.0ms)
2931
+ Completed 200 OK in 0ms (Views: 0.2ms)
2932
+ -----------------------------------------------------------------------
2933
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
2934
+ -----------------------------------------------------------------------
2935
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:34:58 -0500
2936
+ Processing by PagesController#empty as HTML
2937
+ Rendered pages/empty.html.erb (0.0ms)
2938
+ Completed 200 OK in 0ms (Views: 0.2ms)
2939
+ ---------------------------------------------------------------------
2940
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
2941
+ ---------------------------------------------------------------------
2942
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:34:58 -0500
2943
+ Processing by PagesController#scratch as HTML
2944
+ Rendered pages/scratch.html.erb (0.0ms)
2945
+ Completed 200 OK in 0ms (Views: 0.2ms)
2946
+ -----------------------------------------------------------------------
2947
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
2948
+ -----------------------------------------------------------------------
2949
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:41:01 -0500
2950
+ Processing by PagesController#empty as HTML
2951
+ Rendered pages/empty.html.erb (0.7ms)
2952
+ Completed 200 OK in 6ms (Views: 5.6ms)
2953
+ ---------------------------------------------------------------------
2954
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
2955
+ ---------------------------------------------------------------------
2956
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:41:01 -0500
2957
+ Processing by PagesController#scratch as HTML
2958
+ Rendered pages/scratch.html.erb (0.4ms)
2959
+ Completed 200 OK in 1ms (Views: 1.3ms)
2960
+ ---------------------------------------------------------------------
2961
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
2962
+ ---------------------------------------------------------------------
2963
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:41:01 -0500
2964
+ Processing by PagesController#scratch as HTML
2965
+ Rendered pages/scratch.html.erb (0.0ms)
2966
+ Completed 200 OK in 0ms (Views: 0.2ms)
2967
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:41:01 -0500
2968
+ Processing by PagesController#scratch as HTML
2969
+ Rendered pages/scratch.html.erb (0.0ms)
2970
+ Completed 200 OK in 0ms (Views: 0.2ms)
2971
+ ----------------------------------------------------------------------------
2972
+ RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
2973
+ ----------------------------------------------------------------------------
2974
+ Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:41:01 -0500
2975
+ Processing by PagesController#scratch_with_changed_object as HTML
2976
+ Rendered pages/scratch_with_changed_object.html.erb (0.7ms)
2977
+ Completed 200 OK in 1ms (Views: 1.4ms)
2978
+ -------------------------------------------------------------
2979
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
2980
+ -------------------------------------------------------------
2981
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:41:01 -0500
2982
+ Processing by PagesController#scratch as HTML
2983
+ Rendered pages/scratch.html.erb (0.0ms)
2984
+ Completed 200 OK in 0ms (Views: 0.2ms)
2985
+ --------------------------------------------------------------
2986
+ RenderingTest: test_object_scratches_should_inspect_the_object
2987
+ --------------------------------------------------------------
2988
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:41:01 -0500
2989
+ Processing by PagesController#scratch_object as HTML
2990
+ Rendered pages/scratch_object.html.erb (0.3ms)
2991
+ Completed 200 OK in 1ms (Views: 1.2ms)
2992
+ -------------------------------------------------------------
2993
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
2994
+ -------------------------------------------------------------
2995
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:41:01 -0500
2996
+ Processing by PagesController#empty as HTML
2997
+ Rendered pages/empty.html.erb (0.1ms)
2998
+ Completed 200 OK in 0ms (Views: 0.2ms)
2999
+ ---------------------------------------------------------------------------
3000
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
3001
+ ---------------------------------------------------------------------------
3002
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:41:01 -0500
3003
+ Processing by PagesController#multiple_scratch as HTML
3004
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
3005
+ Completed 200 OK in 1ms (Views: 1.1ms)
3006
+ ---------------------------------------------------------------------------
3007
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
3008
+ ---------------------------------------------------------------------------
3009
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:41:01 -0500
3010
+ Processing by PagesController#multiple_scratch as HTML
3011
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
3012
+ Completed 200 OK in 0ms (Views: 0.3ms)
3013
+ --------------------------
3014
+ ScratchpadTest: test_truth
3015
+ --------------------------
3016
+ -------------------------------------------------------------
3017
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
3018
+ -------------------------------------------------------------
3019
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:42:47 -0500
3020
+ Processing by PagesController#scratch as HTML
3021
+ Rendered pages/scratch.html.erb (0.7ms)
3022
+ Completed 200 OK in 6ms (Views: 5.9ms)
3023
+ ---------------------------------------------------------------------------
3024
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
3025
+ ---------------------------------------------------------------------------
3026
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:42:47 -0500
3027
+ Processing by PagesController#multiple_scratch as HTML
3028
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
3029
+ Completed 200 OK in 1ms (Views: 1.1ms)
3030
+ ----------------------------------------------------------------------------
3031
+ RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
3032
+ ----------------------------------------------------------------------------
3033
+ Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:42:47 -0500
3034
+ Processing by PagesController#scratch_with_changed_object as HTML
3035
+ Rendered pages/scratch_with_changed_object.html.erb (0.7ms)
3036
+ Completed 200 OK in 2ms (Views: 1.6ms)
3037
+ --------------------------------------------------------------
3038
+ RenderingTest: test_object_scratches_should_inspect_the_object
3039
+ --------------------------------------------------------------
3040
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:42:47 -0500
3041
+ Processing by PagesController#scratch_object as HTML
3042
+ Rendered pages/scratch_object.html.erb (0.3ms)
3043
+ Completed 200 OK in 1ms (Views: 1.1ms)
3044
+ -------------------------------------------------------------
3045
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
3046
+ -------------------------------------------------------------
3047
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:42:47 -0500
3048
+ Processing by PagesController#empty as HTML
3049
+ Rendered pages/empty.html.erb (0.2ms)
3050
+ Completed 200 OK in 1ms (Views: 1.1ms)
3051
+ ---------------------------------------------------------------------------
3052
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
3053
+ ---------------------------------------------------------------------------
3054
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:42:47 -0500
3055
+ Processing by PagesController#multiple_scratch as HTML
3056
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
3057
+ Completed 200 OK in 0ms (Views: 0.3ms)
3058
+ --------------------------
3059
+ ScratchpadTest: test_truth
3060
+ --------------------------
3061
+ -----------------------------------------------------------------------
3062
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
3063
+ -----------------------------------------------------------------------
3064
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:42:47 -0500
3065
+ Processing by PagesController#empty as HTML
3066
+ Rendered pages/empty.html.erb (0.0ms)
3067
+ Completed 200 OK in 0ms (Views: 0.2ms)
3068
+ ---------------------------------------------------------------------
3069
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
3070
+ ---------------------------------------------------------------------
3071
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:42:47 -0500
3072
+ Processing by PagesController#scratch as HTML
3073
+ Rendered pages/scratch.html.erb (0.1ms)
3074
+ Completed 200 OK in 0ms (Views: 0.3ms)
3075
+ ---------------------------------------------------------------------
3076
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
3077
+ ---------------------------------------------------------------------
3078
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:42:47 -0500
3079
+ Processing by PagesController#scratch as HTML
3080
+ Rendered pages/scratch.html.erb (0.1ms)
3081
+ Completed 200 OK in 0ms (Views: 0.3ms)
3082
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:42:47 -0500
3083
+ Processing by PagesController#scratch as HTML
3084
+ Rendered pages/scratch.html.erb (0.0ms)
3085
+ Completed 200 OK in 0ms (Views: 0.2ms)
3086
+ --------------------------
3087
+ ScratchpadTest: test_truth
3088
+ --------------------------
3089
+ ---------------------------------------------------------------------------
3090
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
3091
+ ---------------------------------------------------------------------------
3092
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:43:25 -0500
3093
+ Processing by PagesController#multiple_scratch as HTML
3094
+ Rendered pages/multiple_scratch.html.erb (0.7ms)
3095
+ Completed 200 OK in 6ms (Views: 5.6ms)
3096
+ --------------------------------------------------------------
3097
+ RenderingTest: test_object_scratches_should_inspect_the_object
3098
+ --------------------------------------------------------------
3099
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:43:25 -0500
3100
+ Processing by PagesController#scratch_object as HTML
3101
+ Rendered pages/scratch_object.html.erb (0.7ms)
3102
+ Completed 200 OK in 1ms (Views: 1.4ms)
3103
+ -------------------------------------------------------------
3104
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
3105
+ -------------------------------------------------------------
3106
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:43:25 -0500
3107
+ Processing by PagesController#empty as HTML
3108
+ Rendered pages/empty.html.erb (0.2ms)
3109
+ Completed 200 OK in 1ms (Views: 1.0ms)
3110
+ ---------------------------------------------------------------------------
3111
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
3112
+ ---------------------------------------------------------------------------
3113
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:43:25 -0500
3114
+ Processing by PagesController#multiple_scratch as HTML
3115
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
3116
+ Completed 200 OK in 0ms (Views: 0.2ms)
3117
+ -------------------------------------------------------------
3118
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
3119
+ -------------------------------------------------------------
3120
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:43:25 -0500
3121
+ Processing by PagesController#scratch as HTML
3122
+ Rendered pages/scratch.html.erb (0.2ms)
3123
+ Completed 200 OK in 1ms (Views: 1.0ms)
3124
+ ----------------------------------------------------------------------------
3125
+ RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
3126
+ ----------------------------------------------------------------------------
3127
+ Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:43:25 -0500
3128
+ Processing by PagesController#scratch_with_changed_object as HTML
3129
+ Rendered pages/scratch_with_changed_object.html.erb (0.3ms)
3130
+ Completed 200 OK in 1ms (Views: 1.0ms)
3131
+ ---------------------------------------------------------------------
3132
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
3133
+ ---------------------------------------------------------------------
3134
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:43:25 -0500
3135
+ Processing by PagesController#scratch as HTML
3136
+ Rendered pages/scratch.html.erb (0.0ms)
3137
+ Completed 200 OK in 0ms (Views: 0.2ms)
3138
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:43:25 -0500
3139
+ Processing by PagesController#scratch as HTML
3140
+ Rendered pages/scratch.html.erb (0.0ms)
3141
+ Completed 200 OK in 0ms (Views: 0.2ms)
3142
+ ---------------------------------------------------------------------
3143
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
3144
+ ---------------------------------------------------------------------
3145
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:43:25 -0500
3146
+ Processing by PagesController#scratch as HTML
3147
+ Rendered pages/scratch.html.erb (0.0ms)
3148
+ Completed 200 OK in 0ms (Views: 0.2ms)
3149
+ -----------------------------------------------------------------------
3150
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
3151
+ -----------------------------------------------------------------------
3152
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:43:25 -0500
3153
+ Processing by PagesController#empty as HTML
3154
+ Rendered pages/empty.html.erb (0.0ms)
3155
+ Completed 200 OK in 0ms (Views: 0.3ms)
3156
+ -------------------------------------------------------------
3157
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
3158
+ -------------------------------------------------------------
3159
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:44:19 -0500
3160
+ Processing by PagesController#scratch as HTML
3161
+ Rendered pages/scratch.html.erb (0.7ms)
3162
+ Completed 200 OK in 6ms (Views: 6.1ms)
3163
+ --------------------------------------------------------------
3164
+ RenderingTest: test_object_scratches_should_inspect_the_object
3165
+ --------------------------------------------------------------
3166
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:44:19 -0500
3167
+ Processing by PagesController#scratch_object as HTML
3168
+ Rendered pages/scratch_object.html.erb (0.6ms)
3169
+ Completed 200 OK in 1ms (Views: 1.4ms)
3170
+ ---------------------------------------------------------------------------
3171
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
3172
+ ---------------------------------------------------------------------------
3173
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:44:19 -0500
3174
+ Processing by PagesController#multiple_scratch as HTML
3175
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
3176
+ Completed 200 OK in 1ms (Views: 1.1ms)
3177
+ -------------------------------------------------------------
3178
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
3179
+ -------------------------------------------------------------
3180
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:44:19 -0500
3181
+ Processing by PagesController#empty as HTML
3182
+ Rendered pages/empty.html.erb (0.2ms)
3183
+ Completed 200 OK in 1ms (Views: 1.1ms)
3184
+ ----------------------------------------------------------------------------
3185
+ RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
3186
+ ----------------------------------------------------------------------------
3187
+ Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:44:19 -0500
3188
+ Processing by PagesController#scratch_with_changed_object as HTML
3189
+ Rendered pages/scratch_with_changed_object.html.erb (0.3ms)
3190
+ Completed 200 OK in 1ms (Views: 1.1ms)
3191
+ ---------------------------------------------------------------------------
3192
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
3193
+ ---------------------------------------------------------------------------
3194
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:44:19 -0500
3195
+ Processing by PagesController#multiple_scratch as HTML
3196
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
3197
+ Completed 200 OK in 0ms (Views: 0.3ms)
3198
+ -----------------------------------------------------------------------
3199
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
3200
+ -----------------------------------------------------------------------
3201
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:44:19 -0500
3202
+ Processing by PagesController#empty as HTML
3203
+ Rendered pages/empty.html.erb (0.0ms)
3204
+ Completed 200 OK in 0ms (Views: 0.3ms)
3205
+ ---------------------------------------------------------------------
3206
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
3207
+ ---------------------------------------------------------------------
3208
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:44:19 -0500
3209
+ Processing by PagesController#scratch as HTML
3210
+ Rendered pages/scratch.html.erb (0.1ms)
3211
+ Completed 200 OK in 0ms (Views: 0.4ms)
3212
+ ---------------------------------------------------------------------
3213
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
3214
+ ---------------------------------------------------------------------
3215
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:44:19 -0500
3216
+ Processing by PagesController#scratch as HTML
3217
+ Rendered pages/scratch.html.erb (0.0ms)
3218
+ Completed 200 OK in 0ms (Views: 0.3ms)
3219
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:44:19 -0500
3220
+ Processing by PagesController#scratch as HTML
3221
+ Rendered pages/scratch.html.erb (0.0ms)
3222
+ Completed 200 OK in 0ms (Views: 0.2ms)
3223
+ --------------------------
3224
+ ScratchpadTest: test_truth
3225
+ --------------------------
3226
+ --------------------------
3227
+ ScratchpadTest: test_truth
3228
+ --------------------------
3229
+ -----------------------------------------------------------------------
3230
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
3231
+ -----------------------------------------------------------------------
3232
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:44:36 -0500
3233
+ Processing by PagesController#empty as HTML
3234
+ Rendered pages/empty.html.erb (0.7ms)
3235
+ Completed 200 OK in 6ms (Views: 5.9ms)
3236
+ ---------------------------------------------------------------------
3237
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
3238
+ ---------------------------------------------------------------------
3239
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:44:36 -0500
3240
+ Processing by PagesController#scratch as HTML
3241
+ Rendered pages/scratch.html.erb (0.3ms)
3242
+ Completed 200 OK in 1ms (Views: 1.1ms)
3243
+ ---------------------------------------------------------------------
3244
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
3245
+ ---------------------------------------------------------------------
3246
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:44:36 -0500
3247
+ Processing by PagesController#scratch as HTML
3248
+ Rendered pages/scratch.html.erb (0.1ms)
3249
+ Completed 200 OK in 0ms (Views: 0.2ms)
3250
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:44:36 -0500
3251
+ Processing by PagesController#scratch as HTML
3252
+ Rendered pages/scratch.html.erb (0.1ms)
3253
+ Completed 200 OK in 0ms (Views: 0.3ms)
3254
+ -------------------------------------------------------------
3255
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
3256
+ -------------------------------------------------------------
3257
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:44:36 -0500
3258
+ Processing by PagesController#empty as HTML
3259
+ Rendered pages/empty.html.erb (0.0ms)
3260
+ Completed 200 OK in 0ms (Views: 0.2ms)
3261
+ --------------------------------------------------------------
3262
+ RenderingTest: test_object_scratches_should_inspect_the_object
3263
+ --------------------------------------------------------------
3264
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:44:36 -0500
3265
+ Processing by PagesController#scratch_object as HTML
3266
+ Rendered pages/scratch_object.html.erb (0.7ms)
3267
+ Completed 200 OK in 2ms (Views: 1.5ms)
3268
+ ----------------------------------------------------------------------------
3269
+ RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
3270
+ ----------------------------------------------------------------------------
3271
+ Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:44:36 -0500
3272
+ Processing by PagesController#scratch_with_changed_object as HTML
3273
+ Rendered pages/scratch_with_changed_object.html.erb (0.3ms)
3274
+ Completed 200 OK in 1ms (Views: 1.1ms)
3275
+ ---------------------------------------------------------------------------
3276
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
3277
+ ---------------------------------------------------------------------------
3278
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:44:36 -0500
3279
+ Processing by PagesController#multiple_scratch as HTML
3280
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
3281
+ Completed 200 OK in 1ms (Views: 1.1ms)
3282
+ -------------------------------------------------------------
3283
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
3284
+ -------------------------------------------------------------
3285
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:44:36 -0500
3286
+ Processing by PagesController#scratch as HTML
3287
+ Rendered pages/scratch.html.erb (0.0ms)
3288
+ Completed 200 OK in 0ms (Views: 0.3ms)
3289
+ ---------------------------------------------------------------------------
3290
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
3291
+ ---------------------------------------------------------------------------
3292
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:44:36 -0500
3293
+ Processing by PagesController#multiple_scratch as HTML
3294
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
3295
+ Completed 200 OK in 0ms (Views: 0.3ms)
3296
+ -------------------------------------------------------------
3297
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
3298
+ -------------------------------------------------------------
3299
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:45:10 -0500
3300
+ Processing by PagesController#empty as HTML
3301
+ Rendered pages/empty.html.erb (0.7ms)
3302
+ Completed 200 OK in 7ms (Views: 6.6ms)
3303
+ --------------------------------------------------------------
3304
+ RenderingTest: test_object_scratches_should_inspect_the_object
3305
+ --------------------------------------------------------------
3306
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:45:10 -0500
3307
+ Processing by PagesController#scratch_object as HTML
3308
+ Rendered pages/scratch_object.html.erb (0.7ms)
3309
+ Completed 200 OK in 2ms (Views: 1.5ms)
3310
+ ----------------------------------------------------------------------------
3311
+ RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
3312
+ ----------------------------------------------------------------------------
3313
+ Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:45:10 -0500
3314
+ Processing by PagesController#scratch_with_changed_object as HTML
3315
+ Rendered pages/scratch_with_changed_object.html.erb (0.2ms)
3316
+ Completed 200 OK in 1ms (Views: 1.0ms)
3317
+ ---------------------------------------------------------------------------
3318
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
3319
+ ---------------------------------------------------------------------------
3320
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:45:10 -0500
3321
+ Processing by PagesController#multiple_scratch as HTML
3322
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
3323
+ Completed 200 OK in 1ms (Views: 1.0ms)
3324
+ ---------------------------------------------------------------------------
3325
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
3326
+ ---------------------------------------------------------------------------
3327
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:45:10 -0500
3328
+ Processing by PagesController#multiple_scratch as HTML
3329
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
3330
+ Completed 200 OK in 0ms (Views: 0.3ms)
3331
+ -------------------------------------------------------------
3332
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
3333
+ -------------------------------------------------------------
3334
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:45:10 -0500
3335
+ Processing by PagesController#scratch as HTML
3336
+ Rendered pages/scratch.html.erb (0.3ms)
3337
+ Completed 200 OK in 1ms (Views: 1.0ms)
3338
+ --------------------------
3339
+ ScratchpadTest: test_truth
3340
+ --------------------------
3341
+ ---------------------------------------------------------------------
3342
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
3343
+ ---------------------------------------------------------------------
3344
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:45:10 -0500
3345
+ Processing by PagesController#scratch as HTML
3346
+ Rendered pages/scratch.html.erb (0.0ms)
3347
+ Completed 200 OK in 0ms (Views: 0.2ms)
3348
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:45:10 -0500
3349
+ Processing by PagesController#scratch as HTML
3350
+ Rendered pages/scratch.html.erb (0.0ms)
3351
+ Completed 200 OK in 0ms (Views: 0.2ms)
3352
+ ---------------------------------------------------------------------
3353
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
3354
+ ---------------------------------------------------------------------
3355
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:45:10 -0500
3356
+ Processing by PagesController#scratch as HTML
3357
+ Rendered pages/scratch.html.erb (0.1ms)
3358
+ Completed 200 OK in 0ms (Views: 0.3ms)
3359
+ -----------------------------------------------------------------------
3360
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
3361
+ -----------------------------------------------------------------------
3362
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:45:10 -0500
3363
+ Processing by PagesController#empty as HTML
3364
+ Rendered pages/empty.html.erb (0.0ms)
3365
+ Completed 200 OK in 0ms (Views: 0.2ms)
3366
+ --------------------------
3367
+ ScratchpadTest: test_truth
3368
+ --------------------------
3369
+ ---------------------------------------------------------------------------
3370
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
3371
+ ---------------------------------------------------------------------------
3372
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:48:26 -0500
3373
+ Processing by PagesController#multiple_scratch as HTML
3374
+ Rendered pages/multiple_scratch.html.erb (0.8ms)
3375
+ Completed 200 OK in 6ms (Views: 6.0ms)
3376
+ -------------------------------------------------------------
3377
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
3378
+ -------------------------------------------------------------
3379
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:48:26 -0500
3380
+ Processing by PagesController#scratch as HTML
3381
+ Rendered pages/scratch.html.erb (0.2ms)
3382
+ Completed 200 OK in 1ms (Views: 1.1ms)
3383
+ ---------------------------------------------------------------------------
3384
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
3385
+ ---------------------------------------------------------------------------
3386
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:48:26 -0500
3387
+ Processing by PagesController#multiple_scratch as HTML
3388
+ Rendered pages/multiple_scratch.html.erb (0.1ms)
3389
+ Completed 200 OK in 0ms (Views: 0.3ms)
3390
+ -------------------------------------------------------------
3391
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
3392
+ -------------------------------------------------------------
3393
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:48:26 -0500
3394
+ Processing by PagesController#empty as HTML
3395
+ Rendered pages/empty.html.erb (0.2ms)
3396
+ Completed 200 OK in 1ms (Views: 1.1ms)
3397
+ ----------------------------------------------------------------------------
3398
+ RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
3399
+ ----------------------------------------------------------------------------
3400
+ Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:48:26 -0500
3401
+ Processing by PagesController#scratch_with_changed_object as HTML
3402
+ Rendered pages/scratch_with_changed_object.html.erb (0.7ms)
3403
+ Completed 200 OK in 2ms (Views: 1.5ms)
3404
+ --------------------------------------------------------------
3405
+ RenderingTest: test_object_scratches_should_inspect_the_object
3406
+ --------------------------------------------------------------
3407
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:48:26 -0500
3408
+ Processing by PagesController#scratch_object as HTML
3409
+ Rendered pages/scratch_object.html.erb (0.2ms)
3410
+ Completed 200 OK in 1ms (Views: 1.0ms)
3411
+ ---------------------------------------------------------------------
3412
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
3413
+ ---------------------------------------------------------------------
3414
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:48:26 -0500
3415
+ Processing by PagesController#scratch as HTML
3416
+ Rendered pages/scratch.html.erb (0.0ms)
3417
+ Completed 200 OK in 0ms (Views: 0.2ms)
3418
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:48:26 -0500
3419
+ Processing by PagesController#scratch as HTML
3420
+ Rendered pages/scratch.html.erb (0.0ms)
3421
+ Completed 200 OK in 0ms (Views: 0.2ms)
3422
+ ---------------------------------------------------------------------
3423
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
3424
+ ---------------------------------------------------------------------
3425
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:48:26 -0500
3426
+ Processing by PagesController#scratch as HTML
3427
+ Rendered pages/scratch.html.erb (0.0ms)
3428
+ Completed 200 OK in 0ms (Views: 0.2ms)
3429
+ -----------------------------------------------------------------------
3430
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
3431
+ -----------------------------------------------------------------------
3432
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:48:26 -0500
3433
+ Processing by PagesController#empty as HTML
3434
+ Rendered pages/empty.html.erb (0.0ms)
3435
+ Completed 200 OK in 0ms (Views: 0.3ms)
3436
+ -----------------------------------------------------------------------
3437
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
3438
+ -----------------------------------------------------------------------
3439
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:48:36 -0500
3440
+ Processing by PagesController#empty as HTML
3441
+ Rendered pages/empty.html.erb (0.8ms)
3442
+ Completed 200 OK in 7ms (Views: 7.3ms)
3443
+ ---------------------------------------------------------------------
3444
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
3445
+ ---------------------------------------------------------------------
3446
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:48:36 -0500
3447
+ Processing by PagesController#scratch as HTML
3448
+ Rendered pages/scratch.html.erb (0.3ms)
3449
+ Completed 200 OK in 1ms (Views: 1.1ms)
3450
+ ---------------------------------------------------------------------
3451
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
3452
+ ---------------------------------------------------------------------
3453
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:48:36 -0500
3454
+ Processing by PagesController#scratch as HTML
3455
+ Rendered pages/scratch.html.erb (0.0ms)
3456
+ Completed 200 OK in 0ms (Views: 0.3ms)
3457
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:48:36 -0500
3458
+ Processing by PagesController#scratch as HTML
3459
+ Rendered pages/scratch.html.erb (0.0ms)
3460
+ Completed 200 OK in 0ms (Views: 0.2ms)
3461
+ ---------------------------------------------------------------------------
3462
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
3463
+ ---------------------------------------------------------------------------
3464
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:48:36 -0500
3465
+ Processing by PagesController#multiple_scratch as HTML
3466
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
3467
+ Completed 200 OK in 1ms (Views: 1.2ms)
3468
+ -------------------------------------------------------------
3469
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
3470
+ -------------------------------------------------------------
3471
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:48:36 -0500
3472
+ Processing by PagesController#empty as HTML
3473
+ Rendered pages/empty.html.erb (0.0ms)
3474
+ Completed 200 OK in 0ms (Views: 0.2ms)
3475
+ --------------------------------------------------------------
3476
+ RenderingTest: test_object_scratches_should_inspect_the_object
3477
+ --------------------------------------------------------------
3478
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:48:36 -0500
3479
+ Processing by PagesController#scratch_object as HTML
3480
+ Rendered pages/scratch_object.html.erb (0.7ms)
3481
+ Completed 200 OK in 2ms (Views: 1.5ms)
3482
+ ----------------------------------------------------------------------------
3483
+ RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
3484
+ ----------------------------------------------------------------------------
3485
+ Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:48:36 -0500
3486
+ Processing by PagesController#scratch_with_changed_object as HTML
3487
+ Rendered pages/scratch_with_changed_object.html.erb (0.3ms)
3488
+ Completed 200 OK in 1ms (Views: 1.0ms)
3489
+ ---------------------------------------------------------------------------
3490
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
3491
+ ---------------------------------------------------------------------------
3492
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:48:36 -0500
3493
+ Processing by PagesController#multiple_scratch as HTML
3494
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
3495
+ Completed 200 OK in 0ms (Views: 0.3ms)
3496
+ -------------------------------------------------------------
3497
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
3498
+ -------------------------------------------------------------
3499
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:48:36 -0500
3500
+ Processing by PagesController#scratch as HTML
3501
+ Rendered pages/scratch.html.erb (0.1ms)
3502
+ Completed 200 OK in 0ms (Views: 0.4ms)
3503
+ --------------------------
3504
+ ScratchpadTest: test_truth
3505
+ --------------------------
3506
+ -------------------------------------------------------------
3507
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
3508
+ -------------------------------------------------------------
3509
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:50:40 -0500
3510
+ Processing by PagesController#scratch as HTML
3511
+ Rendered pages/scratch.html.erb (0.7ms)
3512
+ Completed 200 OK in 5ms (Views: 5.4ms)
3513
+ ----------------------------------------------------------------------------
3514
+ RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
3515
+ ----------------------------------------------------------------------------
3516
+ Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:50:40 -0500
3517
+ Processing by PagesController#scratch_with_changed_object as HTML
3518
+ Rendered pages/scratch_with_changed_object.html.erb (0.7ms)
3519
+ Completed 200 OK in 2ms (Views: 1.5ms)
3520
+ --------------------------------------------------------------
3521
+ RenderingTest: test_object_scratches_should_inspect_the_object
3522
+ --------------------------------------------------------------
3523
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:50:40 -0500
3524
+ Processing by PagesController#scratch_object as HTML
3525
+ Rendered pages/scratch_object.html.erb (0.2ms)
3526
+ Completed 200 OK in 1ms (Views: 1.0ms)
3527
+ ---------------------------------------------------------------------------
3528
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
3529
+ ---------------------------------------------------------------------------
3530
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:50:40 -0500
3531
+ Processing by PagesController#multiple_scratch as HTML
3532
+ Rendered pages/multiple_scratch.html.erb (0.2ms)
3533
+ Completed 200 OK in 1ms (Views: 1.1ms)
3534
+ -------------------------------------------------------------
3535
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
3536
+ -------------------------------------------------------------
3537
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:50:40 -0500
3538
+ Processing by PagesController#empty as HTML
3539
+ Rendered pages/empty.html.erb (0.2ms)
3540
+ Completed 200 OK in 1ms (Views: 1.1ms)
3541
+ ---------------------------------------------------------------------------
3542
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
3543
+ ---------------------------------------------------------------------------
3544
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:50:40 -0500
3545
+ Processing by PagesController#multiple_scratch as HTML
3546
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
3547
+ Completed 200 OK in 0ms (Views: 0.2ms)
3548
+ ---------------------------------------------------------------------------------
3549
+ RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
3550
+ ---------------------------------------------------------------------------------
3551
+ Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:50:40 -0500
3552
+ --------------------------
3553
+ ScratchpadTest: test_truth
3554
+ --------------------------
3555
+ ---------------------------------------------------------------------
3556
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
3557
+ ---------------------------------------------------------------------
3558
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:50:40 -0500
3559
+ Processing by PagesController#scratch as HTML
3560
+ Rendered pages/scratch.html.erb (0.0ms)
3561
+ Completed 200 OK in 0ms (Views: 0.2ms)
3562
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:50:40 -0500
3563
+ Processing by PagesController#scratch as HTML
3564
+ Rendered pages/scratch.html.erb (0.0ms)
3565
+ Completed 200 OK in 0ms (Views: 0.2ms)
3566
+ ---------------------------------------------------------------------
3567
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
3568
+ ---------------------------------------------------------------------
3569
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:50:40 -0500
3570
+ Processing by PagesController#scratch as HTML
3571
+ Rendered pages/scratch.html.erb (0.1ms)
3572
+ Completed 200 OK in 0ms (Views: 0.3ms)
3573
+ -----------------------------------------------------------------------
3574
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
3575
+ -----------------------------------------------------------------------
3576
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:50:40 -0500
3577
+ Processing by PagesController#empty as HTML
3578
+ Rendered pages/empty.html.erb (0.0ms)
3579
+ Completed 200 OK in 0ms (Views: 0.2ms)
3580
+ --------------------------
3581
+ ScratchpadTest: test_truth
3582
+ --------------------------
3583
+ -----------------------------------------------------------------------
3584
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
3585
+ -----------------------------------------------------------------------
3586
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:51:52 -0500
3587
+ Processing by PagesController#empty as HTML
3588
+ Rendered pages/empty.html.erb (0.7ms)
3589
+ Completed 200 OK in 6ms (Views: 5.9ms)
3590
+ ---------------------------------------------------------------------
3591
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
3592
+ ---------------------------------------------------------------------
3593
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:51:52 -0500
3594
+ Processing by PagesController#scratch as HTML
3595
+ Rendered pages/scratch.html.erb (0.2ms)
3596
+ Completed 200 OK in 1ms (Views: 1.0ms)
3597
+ ---------------------------------------------------------------------
3598
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
3599
+ ---------------------------------------------------------------------
3600
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:51:52 -0500
3601
+ Processing by PagesController#scratch as HTML
3602
+ Rendered pages/scratch.html.erb (0.0ms)
3603
+ Completed 200 OK in 0ms (Views: 0.2ms)
3604
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:51:52 -0500
3605
+ Processing by PagesController#scratch as HTML
3606
+ Rendered pages/scratch.html.erb (0.0ms)
3607
+ Completed 200 OK in 0ms (Views: 0.2ms)
3608
+ ---------------------------------------------------------------------------------
3609
+ RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
3610
+ ---------------------------------------------------------------------------------
3611
+ Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:51:52 -0500
3612
+ Processing by PagesController#scratch_with_changed_object as HTML
3613
+ Rendered pages/scratch_with_changed_object.html.erb (0.7ms)
3614
+ Completed 200 OK in 2ms (Views: 1.5ms)
3615
+ ---------------------------------------------------------------------------
3616
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
3617
+ ---------------------------------------------------------------------------
3618
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:51:52 -0500
3619
+ Processing by PagesController#multiple_scratch as HTML
3620
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
3621
+ Completed 200 OK in 1ms (Views: 1.1ms)
3622
+ -------------------------------------------------------------
3623
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
3624
+ -------------------------------------------------------------
3625
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:51:52 -0500
3626
+ Processing by PagesController#scratch as HTML
3627
+ Rendered pages/scratch.html.erb (0.0ms)
3628
+ Completed 200 OK in 0ms (Views: 0.3ms)
3629
+ ----------------------------------------------------------------------------
3630
+ RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
3631
+ ----------------------------------------------------------------------------
3632
+ Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:51:52 -0500
3633
+ Processing by PagesController#scratch_with_changed_object as HTML
3634
+ Rendered pages/scratch_with_changed_object.html.erb (0.0ms)
3635
+ Completed 200 OK in 0ms (Views: 0.2ms)
3636
+ ---------------------------------------------------------------------------
3637
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
3638
+ ---------------------------------------------------------------------------
3639
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:51:52 -0500
3640
+ Processing by PagesController#multiple_scratch as HTML
3641
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
3642
+ Completed 200 OK in 0ms (Views: 0.2ms)
3643
+ -------------------------------------------------------------
3644
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
3645
+ -------------------------------------------------------------
3646
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:51:52 -0500
3647
+ Processing by PagesController#empty as HTML
3648
+ Rendered pages/empty.html.erb (0.0ms)
3649
+ Completed 200 OK in 0ms (Views: 0.2ms)
3650
+ --------------------------------------------------------------
3651
+ RenderingTest: test_object_scratches_should_inspect_the_object
3652
+ --------------------------------------------------------------
3653
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:51:52 -0500
3654
+ Processing by PagesController#scratch_object as HTML
3655
+ Rendered pages/scratch_object.html.erb (3.1ms)
3656
+ Completed 200 OK in 4ms (Views: 4.1ms)
3657
+ ---------------------------------------------------------------------
3658
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
3659
+ ---------------------------------------------------------------------
3660
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:52:05 -0500
3661
+ Processing by PagesController#scratch as HTML
3662
+ Rendered pages/scratch.html.erb (0.7ms)
3663
+ Completed 200 OK in 6ms (Views: 5.6ms)
3664
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:52:05 -0500
3665
+ Processing by PagesController#scratch as HTML
3666
+ Rendered pages/scratch.html.erb (0.0ms)
3667
+ Completed 200 OK in 0ms (Views: 0.2ms)
3668
+ -----------------------------------------------------------------------
3669
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
3670
+ -----------------------------------------------------------------------
3671
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:52:05 -0500
3672
+ Processing by PagesController#empty as HTML
3673
+ Rendered pages/empty.html.erb (0.2ms)
3674
+ Completed 200 OK in 1ms (Views: 1.0ms)
3675
+ ---------------------------------------------------------------------
3676
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
3677
+ ---------------------------------------------------------------------
3678
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:52:05 -0500
3679
+ Processing by PagesController#scratch as HTML
3680
+ Rendered pages/scratch.html.erb (0.0ms)
3681
+ Completed 200 OK in 0ms (Views: 0.2ms)
3682
+ --------------------------
3683
+ ScratchpadTest: test_truth
3684
+ --------------------------
3685
+ ---------------------------------------------------------------------------
3686
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
3687
+ ---------------------------------------------------------------------------
3688
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:52:05 -0500
3689
+ Processing by PagesController#multiple_scratch as HTML
3690
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
3691
+ Completed 200 OK in 1ms (Views: 1.0ms)
3692
+ ---------------------------------------------------------------------------
3693
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
3694
+ ---------------------------------------------------------------------------
3695
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:52:05 -0500
3696
+ Processing by PagesController#multiple_scratch as HTML
3697
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
3698
+ Completed 200 OK in 0ms (Views: 0.3ms)
3699
+ ---------------------------------------------------------------------------------
3700
+ RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
3701
+ ---------------------------------------------------------------------------------
3702
+ Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:52:05 -0500
3703
+ Processing by PagesController#scratch_with_changed_object as HTML
3704
+ Rendered pages/scratch_with_changed_object.html.erb (0.7ms)
3705
+ Completed 200 OK in 2ms (Views: 1.5ms)
3706
+ -------------------------------------------------------------
3707
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
3708
+ -------------------------------------------------------------
3709
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:52:05 -0500
3710
+ Processing by PagesController#empty as HTML
3711
+ Rendered pages/empty.html.erb (0.0ms)
3712
+ Completed 200 OK in 0ms (Views: 0.3ms)
3713
+ -------------------------------------------------------------
3714
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
3715
+ -------------------------------------------------------------
3716
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:52:05 -0500
3717
+ Processing by PagesController#scratch as HTML
3718
+ Rendered pages/scratch.html.erb (0.1ms)
3719
+ Completed 200 OK in 0ms (Views: 0.3ms)
3720
+ ----------------------------------------------------------------------------
3721
+ RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
3722
+ ----------------------------------------------------------------------------
3723
+ Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:52:05 -0500
3724
+ Processing by PagesController#scratch_with_changed_object as HTML
3725
+ Rendered pages/scratch_with_changed_object.html.erb (0.0ms)
3726
+ Completed 200 OK in 0ms (Views: 0.2ms)
3727
+ --------------------------------------------------------------
3728
+ RenderingTest: test_object_scratches_should_inspect_the_object
3729
+ --------------------------------------------------------------
3730
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:52:05 -0500
3731
+ Processing by PagesController#scratch_object as HTML
3732
+ Rendered pages/scratch_object.html.erb (0.3ms)
3733
+ Completed 200 OK in 3ms (Views: 3.3ms)
3734
+ --------------------------
3735
+ ScratchpadTest: test_truth
3736
+ --------------------------
3737
+ ---------------------------------------------------------------------
3738
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
3739
+ ---------------------------------------------------------------------
3740
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:52:15 -0500
3741
+ Processing by PagesController#scratch as HTML
3742
+ Rendered pages/scratch.html.erb (1.0ms)
3743
+ Completed 200 OK in 9ms (Views: 9.1ms)
3744
+ ---------------------------------------------------------------------
3745
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
3746
+ ---------------------------------------------------------------------
3747
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:52:15 -0500
3748
+ Processing by PagesController#scratch as HTML
3749
+ Rendered pages/scratch.html.erb (0.0ms)
3750
+ Completed 200 OK in 0ms (Views: 0.3ms)
3751
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:52:15 -0500
3752
+ Processing by PagesController#scratch as HTML
3753
+ Rendered pages/scratch.html.erb (0.0ms)
3754
+ Completed 200 OK in 0ms (Views: 0.2ms)
3755
+ -----------------------------------------------------------------------
3756
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
3757
+ -----------------------------------------------------------------------
3758
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:52:15 -0500
3759
+ Processing by PagesController#empty as HTML
3760
+ Rendered pages/empty.html.erb (0.2ms)
3761
+ Completed 200 OK in 1ms (Views: 0.9ms)
3762
+ --------------------------------------------------------------
3763
+ RenderingTest: test_object_scratches_should_inspect_the_object
3764
+ --------------------------------------------------------------
3765
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:52:15 -0500
3766
+ Processing by PagesController#scratch_object as HTML
3767
+ Rendered pages/scratch_object.html.erb (0.7ms)
3768
+ Completed 200 OK in 2ms (Views: 1.5ms)
3769
+ -------------------------------------------------------------
3770
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
3771
+ -------------------------------------------------------------
3772
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:52:15 -0500
3773
+ Processing by PagesController#scratch as HTML
3774
+ Rendered pages/scratch.html.erb (0.0ms)
3775
+ Completed 200 OK in 0ms (Views: 0.3ms)
3776
+ ---------------------------------------------------------------------------
3777
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
3778
+ ---------------------------------------------------------------------------
3779
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:52:15 -0500
3780
+ Processing by PagesController#multiple_scratch as HTML
3781
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
3782
+ Completed 200 OK in 1ms (Views: 1.1ms)
3783
+ -------------------------------------------------------------
3784
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
3785
+ -------------------------------------------------------------
3786
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:52:15 -0500
3787
+ Processing by PagesController#empty as HTML
3788
+ Rendered pages/empty.html.erb (0.0ms)
3789
+ Completed 200 OK in 0ms (Views: 0.3ms)
3790
+ ---------------------------------------------------------------------------------
3791
+ RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
3792
+ ---------------------------------------------------------------------------------
3793
+ Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:52:15 -0500
3794
+ Processing by PagesController#scratch_with_changed_object as HTML
3795
+ Rendered pages/scratch_with_changed_object.html.erb (0.5ms)
3796
+ Completed 200 OK in 2ms (Views: 1.6ms)
3797
+ ----------------------------------------------------------------------------
3798
+ RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
3799
+ ----------------------------------------------------------------------------
3800
+ Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:52:15 -0500
3801
+ Processing by PagesController#scratch_with_changed_object as HTML
3802
+ Rendered pages/scratch_with_changed_object.html.erb (0.0ms)
3803
+ Completed 200 OK in 0ms (Views: 0.2ms)
3804
+ ---------------------------------------------------------------------------
3805
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
3806
+ ---------------------------------------------------------------------------
3807
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:52:15 -0500
3808
+ Processing by PagesController#multiple_scratch as HTML
3809
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
3810
+ Completed 200 OK in 0ms (Views: 0.2ms)
3811
+ --------------------------
3812
+ ScratchpadTest: test_truth
3813
+ --------------------------
3814
+ ---------------------------------------------------------------------------
3815
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
3816
+ ---------------------------------------------------------------------------
3817
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:56:29 -0500
3818
+ Processing by PagesController#multiple_scratch as HTML
3819
+ Rendered pages/multiple_scratch.html.erb (0.8ms)
3820
+ Completed 200 OK in 6ms (Views: 6.0ms)
3821
+ --------------------------------------------------------------
3822
+ RenderingTest: test_object_scratches_should_inspect_the_object
3823
+ --------------------------------------------------------------
3824
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:56:29 -0500
3825
+ Processing by PagesController#scratch_object as HTML
3826
+ Rendered pages/scratch_object.html.erb (0.6ms)
3827
+ Completed 200 OK in 1ms (Views: 1.5ms)
3828
+ -------------------------------------------------------------
3829
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
3830
+ -------------------------------------------------------------
3831
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:56:29 -0500
3832
+ Processing by PagesController#empty as HTML
3833
+ Rendered pages/empty.html.erb (0.2ms)
3834
+ Completed 200 OK in 1ms (Views: 1.0ms)
3835
+ ---------------------------------------------------------------------------------
3836
+ RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
3837
+ ---------------------------------------------------------------------------------
3838
+ Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:56:29 -0500
3839
+ Processing by PagesController#scratch_with_changed_object as HTML
3840
+ Rendered pages/scratch_with_changed_object.html.erb (0.3ms)
3841
+ Completed 200 OK in 1ms (Views: 1.1ms)
3842
+ ---------------------------------------------------------------------------
3843
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
3844
+ ---------------------------------------------------------------------------
3845
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:56:29 -0500
3846
+ Processing by PagesController#multiple_scratch as HTML
3847
+ Rendered pages/multiple_scratch.html.erb (0.1ms)
3848
+ Completed 200 OK in 0ms (Views: 0.3ms)
3849
+ ----------------------------------------------------------------------------
3850
+ RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
3851
+ ----------------------------------------------------------------------------
3852
+ Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:56:29 -0500
3853
+ Processing by PagesController#scratch_with_changed_object as HTML
3854
+ Rendered pages/scratch_with_changed_object.html.erb (0.0ms)
3855
+ Completed 200 OK in 0ms (Views: 0.2ms)
3856
+ -------------------------------------------------------------
3857
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
3858
+ -------------------------------------------------------------
3859
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:56:29 -0500
3860
+ Processing by PagesController#scratch as HTML
3861
+ Rendered pages/scratch.html.erb (0.4ms)
3862
+ Completed 200 OK in 2ms (Views: 1.7ms)
3863
+ -----------------------------------------------------------------------
3864
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
3865
+ -----------------------------------------------------------------------
3866
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:56:29 -0500
3867
+ Processing by PagesController#empty as HTML
3868
+ Rendered pages/empty.html.erb (0.0ms)
3869
+ Completed 200 OK in 0ms (Views: 0.3ms)
3870
+ ---------------------------------------------------------------------
3871
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
3872
+ ---------------------------------------------------------------------
3873
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:56:29 -0500
3874
+ Processing by PagesController#scratch as HTML
3875
+ Rendered pages/scratch.html.erb (0.0ms)
3876
+ Completed 200 OK in 0ms (Views: 0.2ms)
3877
+ ---------------------------------------------------------------------
3878
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
3879
+ ---------------------------------------------------------------------
3880
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:56:29 -0500
3881
+ Processing by PagesController#scratch as HTML
3882
+ Rendered pages/scratch.html.erb (0.0ms)
3883
+ Completed 200 OK in 0ms (Views: 0.2ms)
3884
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:56:29 -0500
3885
+ Processing by PagesController#scratch as HTML
3886
+ Rendered pages/scratch.html.erb (0.0ms)
3887
+ Completed 200 OK in 0ms (Views: 0.2ms)
3888
+ -----------------------------------------------------------------------
3889
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
3890
+ -----------------------------------------------------------------------
3891
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:58:57 -0500
3892
+ Processing by PagesController#empty as HTML
3893
+ Rendered pages/empty.html.erb (0.7ms)
3894
+ Completed 200 OK in 6ms (Views: 6.2ms)
3895
+ ---------------------------------------------------------------------
3896
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
3897
+ ---------------------------------------------------------------------
3898
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:58:57 -0500
3899
+ Processing by PagesController#scratch as HTML
3900
+ Rendered pages/scratch.html.erb (0.3ms)
3901
+ Completed 200 OK in 1ms (Views: 1.1ms)
3902
+ ---------------------------------------------------------------------
3903
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
3904
+ ---------------------------------------------------------------------
3905
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:58:57 -0500
3906
+ Processing by PagesController#scratch as HTML
3907
+ Rendered pages/scratch.html.erb (0.0ms)
3908
+ Completed 200 OK in 0ms (Views: 0.3ms)
3909
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:58:57 -0500
3910
+ Processing by PagesController#scratch as HTML
3911
+ Rendered pages/scratch.html.erb (0.0ms)
3912
+ Completed 200 OK in 0ms (Views: 0.2ms)
3913
+ ---------------------------------------------------------------------------
3914
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
3915
+ ---------------------------------------------------------------------------
3916
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:58:57 -0500
3917
+ Processing by PagesController#multiple_scratch as HTML
3918
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
3919
+ Completed 200 OK in 1ms (Views: 1.1ms)
3920
+ -------------------------------------------------------------
3921
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
3922
+ -------------------------------------------------------------
3923
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:58:57 -0500
3924
+ Processing by PagesController#empty as HTML
3925
+ Rendered pages/empty.html.erb (0.1ms)
3926
+ Completed 200 OK in 0ms (Views: 0.3ms)
3927
+ -------------------------------------------------------------
3928
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
3929
+ -------------------------------------------------------------
3930
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:58:57 -0500
3931
+ Processing by PagesController#scratch as HTML
3932
+ Rendered pages/scratch.html.erb (0.1ms)
3933
+ Completed 200 OK in 0ms (Views: 0.3ms)
3934
+ --------------------------------------------------------------
3935
+ RenderingTest: test_object_scratches_should_inspect_the_object
3936
+ --------------------------------------------------------------
3937
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:58:57 -0500
3938
+ Processing by PagesController#scratch_object as HTML
3939
+ Rendered pages/scratch_object.html.erb (0.8ms)
3940
+ Completed 200 OK in 2ms (Views: 1.7ms)
3941
+ ---------------------------------------------------------------------------------
3942
+ RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
3943
+ ---------------------------------------------------------------------------------
3944
+ Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:58:57 -0500
3945
+ Processing by PagesController#scratch_with_changed_object as HTML
3946
+ Rendered pages/scratch_with_changed_object.html.erb (0.3ms)
3947
+ Completed 200 OK in 1ms (Views: 1.2ms)
3948
+ ----------------------------------------------------------------------------
3949
+ RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
3950
+ ----------------------------------------------------------------------------
3951
+ Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:58:57 -0500
3952
+ Processing by PagesController#scratch_with_changed_object as HTML
3953
+ Rendered pages/scratch_with_changed_object.html.erb (0.1ms)
3954
+ Completed 200 OK in 0ms (Views: 0.3ms)
3955
+ ---------------------------------------------------------------------------
3956
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
3957
+ ---------------------------------------------------------------------------
3958
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:58:57 -0500
3959
+ Processing by PagesController#multiple_scratch as HTML
3960
+ Rendered pages/multiple_scratch.html.erb (0.2ms)
3961
+ Completed 200 OK in 3ms (Views: 0.4ms)
3962
+ --------------------------
3963
+ ScratchpadTest: test_truth
3964
+ --------------------------
3965
+ --------------------------
3966
+ ScratchpadTest: test_truth
3967
+ --------------------------
3968
+ -----------------------------------------------------------------------
3969
+ MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
3970
+ -----------------------------------------------------------------------
3971
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:59:41 -0500
3972
+ Processing by PagesController#empty as HTML
3973
+ Rendered pages/empty.html.erb (0.7ms)
3974
+ Completed 200 OK in 7ms (Views: 6.9ms)
3975
+ ---------------------------------------------------------------------
3976
+ MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
3977
+ ---------------------------------------------------------------------
3978
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:59:41 -0500
3979
+ Processing by PagesController#scratch as HTML
3980
+ Rendered pages/scratch.html.erb (0.3ms)
3981
+ Completed 200 OK in 1ms (Views: 1.1ms)
3982
+ ---------------------------------------------------------------------
3983
+ MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
3984
+ ---------------------------------------------------------------------
3985
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:59:41 -0500
3986
+ Processing by PagesController#scratch as HTML
3987
+ Rendered pages/scratch.html.erb (0.0ms)
3988
+ Completed 200 OK in 0ms (Views: 0.2ms)
3989
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:59:41 -0500
3990
+ Processing by PagesController#scratch as HTML
3991
+ Rendered pages/scratch.html.erb (0.0ms)
3992
+ Completed 200 OK in 0ms (Views: 0.2ms)
3993
+ ---------------------------------------------------------------------------
3994
+ RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
3995
+ ---------------------------------------------------------------------------
3996
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:59:41 -0500
3997
+ Processing by PagesController#multiple_scratch as HTML
3998
+ Rendered pages/multiple_scratch.html.erb (0.3ms)
3999
+ Completed 200 OK in 1ms (Views: 1.2ms)
4000
+ ---------------------------------------------------------------------------------
4001
+ RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
4002
+ ---------------------------------------------------------------------------------
4003
+ Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:59:41 -0500
4004
+ Processing by PagesController#multiple_scratch_with_changed_object as HTML
4005
+ Rendered pages/multiple_scratch_with_changed_object.html.erb (0.8ms)
4006
+ Completed 200 OK in 2ms (Views: 1.6ms)
4007
+ --------------------------------------------------------------
4008
+ RenderingTest: test_object_scratches_should_inspect_the_object
4009
+ --------------------------------------------------------------
4010
+ Started GET "/scratch_object" for 127.0.0.1 at 2015-01-09 16:59:41 -0500
4011
+ Processing by PagesController#scratch_object as HTML
4012
+ Rendered pages/scratch_object.html.erb (0.3ms)
4013
+ Completed 200 OK in 1ms (Views: 1.2ms)
4014
+ ---------------------------------------------------------------------------
4015
+ RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
4016
+ ---------------------------------------------------------------------------
4017
+ Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-09 16:59:41 -0500
4018
+ Processing by PagesController#multiple_scratch as HTML
4019
+ Rendered pages/multiple_scratch.html.erb (0.0ms)
4020
+ Completed 200 OK in 0ms (Views: 0.2ms)
4021
+ ----------------------------------------------------------------------------
4022
+ RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
4023
+ ----------------------------------------------------------------------------
4024
+ Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-09 16:59:41 -0500
4025
+ Processing by PagesController#scratch_with_changed_object as HTML
4026
+ Rendered pages/scratch_with_changed_object.html.erb (0.3ms)
4027
+ Completed 200 OK in 1ms (Views: 1.1ms)
4028
+ -------------------------------------------------------------
4029
+ RenderingTest: test_the_scratchpad_should_render_if_not_empty
4030
+ -------------------------------------------------------------
4031
+ Started GET "/scratch" for 127.0.0.1 at 2015-01-09 16:59:41 -0500
4032
+ Processing by PagesController#scratch as HTML
4033
+ Rendered pages/scratch.html.erb (0.0ms)
4034
+ Completed 200 OK in 0ms (Views: 0.3ms)
4035
+ -------------------------------------------------------------
4036
+ RenderingTest: test_the_scratchpad_should_not_render_if_empty
4037
+ -------------------------------------------------------------
4038
+ Started GET "/" for 127.0.0.1 at 2015-01-09 16:59:41 -0500
4039
+ Processing by PagesController#empty as HTML
4040
+ Rendered pages/empty.html.erb (0.0ms)
4041
+ Completed 200 OK in 3ms (Views: 2.7ms)