scratchpad 0.0.3 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/scratchpad/middleware.rb +1 -1
- data/lib/scratchpad/version.rb +1 -1
- data/test/dummy/log/test.log +1350 -0
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e66912d991094c7d8cd46eef79b83f8efd227908
|
|
4
|
+
data.tar.gz: 59379bc3ec38cadeef94b34d1661f0e214f600bf
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 651ebed3facf1b16ff7305f759ee1d69da9947bd870e313bcb541ed61e356ba13f63cee000da60ab7738cb09a6bf73d2271db2b6a50e33a106f58b5d0c5650ae
|
|
7
|
+
data.tar.gz: 9ff9303e6538663d76ac1763b02bd4609720ef3d269a1a2b71b5b8b1658306d55acc802cd3c75992306cc3fb7495dfa87a9a8a23102e291a5e5bfb6d04302d82
|
|
@@ -7,7 +7,7 @@ module Scratchpad
|
|
|
7
7
|
def call env
|
|
8
8
|
scratchpad = Scratchpad::Page.new(env)
|
|
9
9
|
status, headers, response = @app.call(env)
|
|
10
|
-
if headers["Content-Type"].include?
|
|
10
|
+
if headers["Content-Type"] && headers["Content-Type"].include?("text/html")
|
|
11
11
|
[status, headers, [response.body + scratchpad.to_html]]
|
|
12
12
|
else
|
|
13
13
|
[status, headers, response]
|
data/lib/scratchpad/version.rb
CHANGED
data/test/dummy/log/test.log
CHANGED
|
@@ -5622,3 +5622,1353 @@ Processing by PagesController#scratch as HTML
|
|
|
5622
5622
|
Rendered pages/scratch.html.erb (0.2ms)
|
|
5623
5623
|
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
5624
5624
|
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5625
|
+
------------------------------------------------------
|
|
5626
|
+
RenderingTest: test_scratch_should_render_calling_line
|
|
5627
|
+
------------------------------------------------------
|
|
5628
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:32:35 -0500
|
|
5629
|
+
Processing by PagesController#scratch as HTML
|
|
5630
|
+
Rendered pages/scratch.html.erb (0.9ms)
|
|
5631
|
+
Completed 200 OK in 9ms (Views: 9.0ms)
|
|
5632
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.8ms)
|
|
5633
|
+
--------------------------------------------------------------
|
|
5634
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
|
5635
|
+
--------------------------------------------------------------
|
|
5636
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-13 13:32:35 -0500
|
|
5637
|
+
Processing by PagesController#scratch_object as HTML
|
|
5638
|
+
Rendered pages/scratch_object.html.erb (1.4ms)
|
|
5639
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
5640
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5641
|
+
---------------------------------------------------------------------------
|
|
5642
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
|
5643
|
+
---------------------------------------------------------------------------
|
|
5644
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:32:35 -0500
|
|
5645
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
5646
|
+
Rendered pages/multiple_scratch.html.erb (0.5ms)
|
|
5647
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
|
5648
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
5649
|
+
---------------------------------------------------------------------------
|
|
5650
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
|
5651
|
+
---------------------------------------------------------------------------
|
|
5652
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:32:35 -0500
|
|
5653
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
5654
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
|
5655
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
5656
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (1.0ms)
|
|
5657
|
+
-------------------------------------------------------------
|
|
5658
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
|
5659
|
+
-------------------------------------------------------------
|
|
5660
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:32:35 -0500
|
|
5661
|
+
Processing by PagesController#scratch as HTML
|
|
5662
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
5663
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
5664
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
5665
|
+
------------------------------------------------------
|
|
5666
|
+
RenderingTest: test_scratch_should_render_calling_file
|
|
5667
|
+
------------------------------------------------------
|
|
5668
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:32:35 -0500
|
|
5669
|
+
Processing by PagesController#scratch as HTML
|
|
5670
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
5671
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
5672
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5673
|
+
---------------------------------------------------------------------------------
|
|
5674
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
|
5675
|
+
---------------------------------------------------------------------------------
|
|
5676
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:32:35 -0500
|
|
5677
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
|
5678
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.9ms)
|
|
5679
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
5680
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
|
5681
|
+
----------------------------------------------------------------------------
|
|
5682
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
|
5683
|
+
----------------------------------------------------------------------------
|
|
5684
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:32:35 -0500
|
|
5685
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
|
5686
|
+
Rendered pages/scratch_with_changed_object.html.erb (1.1ms)
|
|
5687
|
+
Completed 200 OK in 3ms (Views: 3.2ms)
|
|
5688
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
|
5689
|
+
-------------------------------------------------------------
|
|
5690
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
|
5691
|
+
-------------------------------------------------------------
|
|
5692
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:32:35 -0500
|
|
5693
|
+
Processing by PagesController#empty as HTML
|
|
5694
|
+
Rendered pages/empty.html.erb (0.2ms)
|
|
5695
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
|
5696
|
+
-----------------------------------------------------------------------
|
|
5697
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
|
5698
|
+
-----------------------------------------------------------------------
|
|
5699
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:32:35 -0500
|
|
5700
|
+
Processing by PagesController#empty as HTML
|
|
5701
|
+
Rendered pages/empty.html.erb (0.0ms)
|
|
5702
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
5703
|
+
---------------------------------------------------------------------
|
|
5704
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
|
5705
|
+
---------------------------------------------------------------------
|
|
5706
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:32:35 -0500
|
|
5707
|
+
Processing by PagesController#scratch as HTML
|
|
5708
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
5709
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
5710
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5711
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:32:35 -0500
|
|
5712
|
+
Processing by PagesController#scratch as HTML
|
|
5713
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
5714
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
5715
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5716
|
+
--------------------------------------------------
|
|
5717
|
+
MiddlewareTest: test_only_scratch_on_html_requests
|
|
5718
|
+
--------------------------------------------------
|
|
5719
|
+
Started GET "/app/assets/stylesheets/application.css" for 127.0.0.1 at 2015-01-13 13:32:35 -0500
|
|
5720
|
+
---------------------------------------------------------------------
|
|
5721
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
|
5722
|
+
---------------------------------------------------------------------
|
|
5723
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:32:35 -0500
|
|
5724
|
+
Processing by PagesController#scratch as HTML
|
|
5725
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
5726
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
5727
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5728
|
+
--------------------------
|
|
5729
|
+
ScratchpadTest: test_truth
|
|
5730
|
+
--------------------------
|
|
5731
|
+
------------------------------------------------------
|
|
5732
|
+
RenderingTest: test_scratch_should_render_calling_line
|
|
5733
|
+
------------------------------------------------------
|
|
5734
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:32:52 -0500
|
|
5735
|
+
Processing by PagesController#scratch as HTML
|
|
5736
|
+
Rendered pages/scratch.html.erb (0.8ms)
|
|
5737
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
|
5738
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5739
|
+
--------------------------------------------------------------
|
|
5740
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
|
5741
|
+
--------------------------------------------------------------
|
|
5742
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-13 13:32:52 -0500
|
|
5743
|
+
Processing by PagesController#scratch_object as HTML
|
|
5744
|
+
Rendered pages/scratch_object.html.erb (0.8ms)
|
|
5745
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
|
5746
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
5747
|
+
-------------------------------------------------------------
|
|
5748
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
|
5749
|
+
-------------------------------------------------------------
|
|
5750
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:32:52 -0500
|
|
5751
|
+
Processing by PagesController#empty as HTML
|
|
5752
|
+
Rendered pages/empty.html.erb (0.2ms)
|
|
5753
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
|
5754
|
+
----------------------------------------------------------------------------
|
|
5755
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
|
5756
|
+
----------------------------------------------------------------------------
|
|
5757
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:32:52 -0500
|
|
5758
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
|
5759
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.4ms)
|
|
5760
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
|
5761
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5762
|
+
---------------------------------------------------------------------------
|
|
5763
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
|
5764
|
+
---------------------------------------------------------------------------
|
|
5765
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:32:52 -0500
|
|
5766
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
5767
|
+
Rendered pages/multiple_scratch.html.erb (0.6ms)
|
|
5768
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
|
5769
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
5770
|
+
-------------------------------------------------------------
|
|
5771
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
|
5772
|
+
-------------------------------------------------------------
|
|
5773
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:32:52 -0500
|
|
5774
|
+
Processing by PagesController#scratch as HTML
|
|
5775
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
|
5776
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
5777
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
5778
|
+
---------------------------------------------------------------------------------
|
|
5779
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
|
5780
|
+
---------------------------------------------------------------------------------
|
|
5781
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:32:52 -0500
|
|
5782
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
|
5783
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.5ms)
|
|
5784
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
|
5785
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
5786
|
+
------------------------------------------------------
|
|
5787
|
+
RenderingTest: test_scratch_should_render_calling_file
|
|
5788
|
+
------------------------------------------------------
|
|
5789
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:32:52 -0500
|
|
5790
|
+
Processing by PagesController#scratch as HTML
|
|
5791
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
5792
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
5793
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5794
|
+
---------------------------------------------------------------------------
|
|
5795
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
|
5796
|
+
---------------------------------------------------------------------------
|
|
5797
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:32:52 -0500
|
|
5798
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
5799
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
|
5800
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
5801
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5802
|
+
--------------------------
|
|
5803
|
+
ScratchpadTest: test_truth
|
|
5804
|
+
--------------------------
|
|
5805
|
+
---------------------------------------------------------------------
|
|
5806
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
|
5807
|
+
---------------------------------------------------------------------
|
|
5808
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:32:52 -0500
|
|
5809
|
+
Processing by PagesController#scratch as HTML
|
|
5810
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
5811
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
5812
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5813
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:32:52 -0500
|
|
5814
|
+
Processing by PagesController#scratch as HTML
|
|
5815
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
5816
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
5817
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
5818
|
+
--------------------------------------------------
|
|
5819
|
+
MiddlewareTest: test_only_scratch_on_html_requests
|
|
5820
|
+
--------------------------------------------------
|
|
5821
|
+
Started GET "/public/assets/stylesheets/application.css" for 127.0.0.1 at 2015-01-13 13:32:52 -0500
|
|
5822
|
+
---------------------------------------------------------------------
|
|
5823
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
|
5824
|
+
---------------------------------------------------------------------
|
|
5825
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:32:52 -0500
|
|
5826
|
+
Processing by PagesController#scratch as HTML
|
|
5827
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
5828
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
5829
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5830
|
+
-----------------------------------------------------------------------
|
|
5831
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
|
5832
|
+
-----------------------------------------------------------------------
|
|
5833
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:32:52 -0500
|
|
5834
|
+
Processing by PagesController#empty as HTML
|
|
5835
|
+
Rendered pages/empty.html.erb (0.0ms)
|
|
5836
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
5837
|
+
--------------------------
|
|
5838
|
+
ScratchpadTest: test_truth
|
|
5839
|
+
--------------------------
|
|
5840
|
+
-----------------------------------------------------------------------
|
|
5841
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
|
5842
|
+
-----------------------------------------------------------------------
|
|
5843
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:34:39 -0500
|
|
5844
|
+
Processing by PagesController#empty as HTML
|
|
5845
|
+
Rendered pages/empty.html.erb (0.7ms)
|
|
5846
|
+
Completed 200 OK in 6ms (Views: 6.4ms)
|
|
5847
|
+
---------------------------------------------------------------------
|
|
5848
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
|
5849
|
+
---------------------------------------------------------------------
|
|
5850
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:34:39 -0500
|
|
5851
|
+
Processing by PagesController#scratch as HTML
|
|
5852
|
+
Rendered pages/scratch.html.erb (0.4ms)
|
|
5853
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
|
5854
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5855
|
+
---------------------------------------------------------------------
|
|
5856
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
|
5857
|
+
---------------------------------------------------------------------
|
|
5858
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:34:39 -0500
|
|
5859
|
+
Processing by PagesController#scratch as HTML
|
|
5860
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
5861
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
5862
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
5863
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:34:39 -0500
|
|
5864
|
+
Processing by PagesController#scratch as HTML
|
|
5865
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
|
5866
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
5867
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
5868
|
+
--------------------------------------------------
|
|
5869
|
+
MiddlewareTest: test_only_scratch_on_html_requests
|
|
5870
|
+
--------------------------------------------------
|
|
5871
|
+
------------------------------------------------------
|
|
5872
|
+
RenderingTest: test_scratch_should_render_calling_file
|
|
5873
|
+
------------------------------------------------------
|
|
5874
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:34:39 -0500
|
|
5875
|
+
Processing by PagesController#scratch as HTML
|
|
5876
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
|
5877
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
5878
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5879
|
+
------------------------------------------------------
|
|
5880
|
+
RenderingTest: test_scratch_should_render_calling_line
|
|
5881
|
+
------------------------------------------------------
|
|
5882
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:34:39 -0500
|
|
5883
|
+
Processing by PagesController#scratch as HTML
|
|
5884
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
5885
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
5886
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5887
|
+
--------------------------------------------------------------
|
|
5888
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
|
5889
|
+
--------------------------------------------------------------
|
|
5890
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-13 13:34:39 -0500
|
|
5891
|
+
Processing by PagesController#scratch_object as HTML
|
|
5892
|
+
Rendered pages/scratch_object.html.erb (1.1ms)
|
|
5893
|
+
Completed 200 OK in 3ms (Views: 2.6ms)
|
|
5894
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
5895
|
+
---------------------------------------------------------------------------
|
|
5896
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
|
5897
|
+
---------------------------------------------------------------------------
|
|
5898
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:34:39 -0500
|
|
5899
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
5900
|
+
Rendered pages/multiple_scratch.html.erb (0.5ms)
|
|
5901
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
|
5902
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
5903
|
+
---------------------------------------------------------------------------
|
|
5904
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
|
5905
|
+
---------------------------------------------------------------------------
|
|
5906
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:34:39 -0500
|
|
5907
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
5908
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
|
5909
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
5910
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5911
|
+
-------------------------------------------------------------
|
|
5912
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
|
5913
|
+
-------------------------------------------------------------
|
|
5914
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:34:39 -0500
|
|
5915
|
+
Processing by PagesController#scratch as HTML
|
|
5916
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
5917
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
5918
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5919
|
+
-------------------------------------------------------------
|
|
5920
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
|
5921
|
+
-------------------------------------------------------------
|
|
5922
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:34:39 -0500
|
|
5923
|
+
Processing by PagesController#empty as HTML
|
|
5924
|
+
Rendered pages/empty.html.erb (0.0ms)
|
|
5925
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
5926
|
+
----------------------------------------------------------------------------
|
|
5927
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
|
5928
|
+
----------------------------------------------------------------------------
|
|
5929
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:34:39 -0500
|
|
5930
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
|
5931
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.4ms)
|
|
5932
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
|
5933
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5934
|
+
---------------------------------------------------------------------------------
|
|
5935
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
|
5936
|
+
---------------------------------------------------------------------------------
|
|
5937
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:34:39 -0500
|
|
5938
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
|
5939
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.4ms)
|
|
5940
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
|
5941
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5942
|
+
--------------------------
|
|
5943
|
+
ScratchpadTest: test_truth
|
|
5944
|
+
--------------------------
|
|
5945
|
+
---------------------------------------------------------------------
|
|
5946
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
|
5947
|
+
---------------------------------------------------------------------
|
|
5948
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:35:36 -0500
|
|
5949
|
+
Processing by PagesController#scratch as HTML
|
|
5950
|
+
Rendered pages/scratch.html.erb (0.9ms)
|
|
5951
|
+
Completed 200 OK in 8ms (Views: 7.6ms)
|
|
5952
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5953
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:35:36 -0500
|
|
5954
|
+
Processing by PagesController#scratch as HTML
|
|
5955
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
5956
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
5957
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5958
|
+
--------------------------------------------------
|
|
5959
|
+
MiddlewareTest: test_only_scratch_on_html_requests
|
|
5960
|
+
--------------------------------------------------
|
|
5961
|
+
-----------------------------------------------------------------------
|
|
5962
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
|
5963
|
+
-----------------------------------------------------------------------
|
|
5964
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:35:36 -0500
|
|
5965
|
+
Processing by PagesController#empty as HTML
|
|
5966
|
+
Rendered pages/empty.html.erb (0.2ms)
|
|
5967
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
|
5968
|
+
---------------------------------------------------------------------
|
|
5969
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
|
5970
|
+
---------------------------------------------------------------------
|
|
5971
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:35:36 -0500
|
|
5972
|
+
Processing by PagesController#scratch as HTML
|
|
5973
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
|
5974
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
5975
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
5976
|
+
------------------------------------------------------
|
|
5977
|
+
RenderingTest: test_scratch_should_render_calling_line
|
|
5978
|
+
------------------------------------------------------
|
|
5979
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:35:36 -0500
|
|
5980
|
+
Processing by PagesController#scratch as HTML
|
|
5981
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
5982
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
5983
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5984
|
+
---------------------------------------------------------------------------
|
|
5985
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
|
5986
|
+
---------------------------------------------------------------------------
|
|
5987
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:35:36 -0500
|
|
5988
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
5989
|
+
Rendered pages/multiple_scratch.html.erb (0.5ms)
|
|
5990
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
|
5991
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
5992
|
+
-------------------------------------------------------------
|
|
5993
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
|
5994
|
+
-------------------------------------------------------------
|
|
5995
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:35:36 -0500
|
|
5996
|
+
Processing by PagesController#empty as HTML
|
|
5997
|
+
Rendered pages/empty.html.erb (0.0ms)
|
|
5998
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
5999
|
+
----------------------------------------------------------------------------
|
|
6000
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
|
6001
|
+
----------------------------------------------------------------------------
|
|
6002
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:35:36 -0500
|
|
6003
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
|
6004
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.9ms)
|
|
6005
|
+
Completed 200 OK in 2ms (Views: 1.9ms)
|
|
6006
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6007
|
+
------------------------------------------------------
|
|
6008
|
+
RenderingTest: test_scratch_should_render_calling_file
|
|
6009
|
+
------------------------------------------------------
|
|
6010
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:35:36 -0500
|
|
6011
|
+
Processing by PagesController#scratch as HTML
|
|
6012
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
|
6013
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6014
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6015
|
+
-------------------------------------------------------------
|
|
6016
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
|
6017
|
+
-------------------------------------------------------------
|
|
6018
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:35:36 -0500
|
|
6019
|
+
Processing by PagesController#scratch as HTML
|
|
6020
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6021
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6022
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6023
|
+
--------------------------------------------------------------
|
|
6024
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
|
6025
|
+
--------------------------------------------------------------
|
|
6026
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-13 13:35:36 -0500
|
|
6027
|
+
Processing by PagesController#scratch_object as HTML
|
|
6028
|
+
Rendered pages/scratch_object.html.erb (0.4ms)
|
|
6029
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
|
6030
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6031
|
+
---------------------------------------------------------------------------------
|
|
6032
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
|
6033
|
+
---------------------------------------------------------------------------------
|
|
6034
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:35:36 -0500
|
|
6035
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
|
6036
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.5ms)
|
|
6037
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
|
6038
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6039
|
+
---------------------------------------------------------------------------
|
|
6040
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
|
6041
|
+
---------------------------------------------------------------------------
|
|
6042
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:35:36 -0500
|
|
6043
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6044
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
|
6045
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
6046
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6047
|
+
-------------------------------------------------------------
|
|
6048
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
|
6049
|
+
-------------------------------------------------------------
|
|
6050
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:36:19 -0500
|
|
6051
|
+
Processing by PagesController#empty as HTML
|
|
6052
|
+
Rendered pages/empty.html.erb (0.7ms)
|
|
6053
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
|
6054
|
+
---------------------------------------------------------------------------------
|
|
6055
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
|
6056
|
+
---------------------------------------------------------------------------------
|
|
6057
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:36:19 -0500
|
|
6058
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
|
6059
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.9ms)
|
|
6060
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
|
6061
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6062
|
+
--------------------------------------------------------------
|
|
6063
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
|
6064
|
+
--------------------------------------------------------------
|
|
6065
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-13 13:36:19 -0500
|
|
6066
|
+
Processing by PagesController#scratch_object as HTML
|
|
6067
|
+
Rendered pages/scratch_object.html.erb (0.4ms)
|
|
6068
|
+
Completed 200 OK in 1ms (Views: 1.1ms)
|
|
6069
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6070
|
+
------------------------------------------------------
|
|
6071
|
+
RenderingTest: test_scratch_should_render_calling_line
|
|
6072
|
+
------------------------------------------------------
|
|
6073
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:36:19 -0500
|
|
6074
|
+
Processing by PagesController#scratch as HTML
|
|
6075
|
+
Rendered pages/scratch.html.erb (0.9ms)
|
|
6076
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
6077
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6078
|
+
----------------------------------------------------------------------------
|
|
6079
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
|
6080
|
+
----------------------------------------------------------------------------
|
|
6081
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:36:19 -0500
|
|
6082
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
|
6083
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.4ms)
|
|
6084
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
|
6085
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6086
|
+
-------------------------------------------------------------
|
|
6087
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
|
6088
|
+
-------------------------------------------------------------
|
|
6089
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:36:19 -0500
|
|
6090
|
+
Processing by PagesController#scratch as HTML
|
|
6091
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6092
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6093
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6094
|
+
---------------------------------------------------------------------------
|
|
6095
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
|
6096
|
+
---------------------------------------------------------------------------
|
|
6097
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:36:19 -0500
|
|
6098
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6099
|
+
Rendered pages/multiple_scratch.html.erb (0.5ms)
|
|
6100
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
|
6101
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6102
|
+
------------------------------------------------------
|
|
6103
|
+
RenderingTest: test_scratch_should_render_calling_file
|
|
6104
|
+
------------------------------------------------------
|
|
6105
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:36:19 -0500
|
|
6106
|
+
Processing by PagesController#scratch as HTML
|
|
6107
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6108
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6109
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.6ms)
|
|
6110
|
+
---------------------------------------------------------------------------
|
|
6111
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
|
6112
|
+
---------------------------------------------------------------------------
|
|
6113
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:36:19 -0500
|
|
6114
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6115
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
|
6116
|
+
Completed 200 OK in 0ms (Views: 0.5ms)
|
|
6117
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6118
|
+
-----------------------------------------------------------------------
|
|
6119
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
|
6120
|
+
-----------------------------------------------------------------------
|
|
6121
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:36:19 -0500
|
|
6122
|
+
Processing by PagesController#empty as HTML
|
|
6123
|
+
Rendered pages/empty.html.erb (0.0ms)
|
|
6124
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
6125
|
+
---------------------------------------------------------------------
|
|
6126
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
|
6127
|
+
---------------------------------------------------------------------
|
|
6128
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:36:19 -0500
|
|
6129
|
+
Processing by PagesController#scratch as HTML
|
|
6130
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
|
6131
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
6132
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6133
|
+
---------------------------------------------------------------------
|
|
6134
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
|
6135
|
+
---------------------------------------------------------------------
|
|
6136
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:36:19 -0500
|
|
6137
|
+
Processing by PagesController#scratch as HTML
|
|
6138
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
|
6139
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
6140
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6141
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:36:19 -0500
|
|
6142
|
+
Processing by PagesController#scratch as HTML
|
|
6143
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6144
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
6145
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6146
|
+
--------------------------------------------------
|
|
6147
|
+
MiddlewareTest: test_only_scratch_on_html_requests
|
|
6148
|
+
--------------------------------------------------
|
|
6149
|
+
--------------------------
|
|
6150
|
+
ScratchpadTest: test_truth
|
|
6151
|
+
--------------------------
|
|
6152
|
+
--------------------------
|
|
6153
|
+
ScratchpadTest: test_truth
|
|
6154
|
+
--------------------------
|
|
6155
|
+
------------------------------------------------------
|
|
6156
|
+
RenderingTest: test_scratch_should_render_calling_file
|
|
6157
|
+
------------------------------------------------------
|
|
6158
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:38:30 -0500
|
|
6159
|
+
Processing by PagesController#scratch as HTML
|
|
6160
|
+
Rendered pages/scratch.html.erb (0.8ms)
|
|
6161
|
+
Completed 200 OK in 7ms (Views: 6.9ms)
|
|
6162
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6163
|
+
-------------------------------------------------------------
|
|
6164
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
|
6165
|
+
-------------------------------------------------------------
|
|
6166
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:38:30 -0500
|
|
6167
|
+
Processing by PagesController#empty as HTML
|
|
6168
|
+
Rendered pages/empty.html.erb (0.2ms)
|
|
6169
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
|
6170
|
+
---------------------------------------------------------------------------
|
|
6171
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
|
6172
|
+
---------------------------------------------------------------------------
|
|
6173
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:38:30 -0500
|
|
6174
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6175
|
+
Rendered pages/multiple_scratch.html.erb (0.6ms)
|
|
6176
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
|
6177
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6178
|
+
--------------------------------------------------------------
|
|
6179
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
|
6180
|
+
--------------------------------------------------------------
|
|
6181
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-13 13:38:30 -0500
|
|
6182
|
+
Processing by PagesController#scratch_object as HTML
|
|
6183
|
+
Rendered pages/scratch_object.html.erb (0.8ms)
|
|
6184
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
|
6185
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6186
|
+
------------------------------------------------------
|
|
6187
|
+
RenderingTest: test_scratch_should_render_calling_line
|
|
6188
|
+
------------------------------------------------------
|
|
6189
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:38:30 -0500
|
|
6190
|
+
Processing by PagesController#scratch as HTML
|
|
6191
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6192
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6193
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6194
|
+
----------------------------------------------------------------------------
|
|
6195
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
|
6196
|
+
----------------------------------------------------------------------------
|
|
6197
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:38:30 -0500
|
|
6198
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
|
6199
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.4ms)
|
|
6200
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
|
6201
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6202
|
+
-------------------------------------------------------------
|
|
6203
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
|
6204
|
+
-------------------------------------------------------------
|
|
6205
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:38:30 -0500
|
|
6206
|
+
Processing by PagesController#scratch as HTML
|
|
6207
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6208
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
6209
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6210
|
+
---------------------------------------------------------------------------
|
|
6211
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
|
6212
|
+
---------------------------------------------------------------------------
|
|
6213
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:38:30 -0500
|
|
6214
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6215
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
|
6216
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
6217
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6218
|
+
---------------------------------------------------------------------------------
|
|
6219
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
|
6220
|
+
---------------------------------------------------------------------------------
|
|
6221
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:38:30 -0500
|
|
6222
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
|
6223
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.5ms)
|
|
6224
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
|
6225
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6226
|
+
--------------------------------------------------
|
|
6227
|
+
MiddlewareTest: test_only_scratch_on_html_requests
|
|
6228
|
+
--------------------------------------------------
|
|
6229
|
+
Started GET "/assets/application.css" for 127.0.0.1 at 2015-01-13 13:38:30 -0500
|
|
6230
|
+
-----------------------------------------------------------------------
|
|
6231
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
|
6232
|
+
-----------------------------------------------------------------------
|
|
6233
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:38:30 -0500
|
|
6234
|
+
Processing by PagesController#empty as HTML
|
|
6235
|
+
Rendered pages/empty.html.erb (0.0ms)
|
|
6236
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
6237
|
+
---------------------------------------------------------------------
|
|
6238
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
|
6239
|
+
---------------------------------------------------------------------
|
|
6240
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:38:30 -0500
|
|
6241
|
+
Processing by PagesController#scratch as HTML
|
|
6242
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6243
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6244
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.9ms)
|
|
6245
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:38:30 -0500
|
|
6246
|
+
Processing by PagesController#scratch as HTML
|
|
6247
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6248
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6249
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6250
|
+
---------------------------------------------------------------------
|
|
6251
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
|
6252
|
+
---------------------------------------------------------------------
|
|
6253
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:38:30 -0500
|
|
6254
|
+
Processing by PagesController#scratch as HTML
|
|
6255
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
|
6256
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
6257
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6258
|
+
--------------------------
|
|
6259
|
+
ScratchpadTest: test_truth
|
|
6260
|
+
--------------------------
|
|
6261
|
+
--------------------------------------------------
|
|
6262
|
+
MiddlewareTest: test_only_scratch_on_html_requests
|
|
6263
|
+
--------------------------------------------------
|
|
6264
|
+
-----------------------------------------------------------------------
|
|
6265
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
|
6266
|
+
-----------------------------------------------------------------------
|
|
6267
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:39:01 -0500
|
|
6268
|
+
Processing by PagesController#empty as HTML
|
|
6269
|
+
Rendered pages/empty.html.erb (0.7ms)
|
|
6270
|
+
Completed 200 OK in 7ms (Views: 6.8ms)
|
|
6271
|
+
---------------------------------------------------------------------
|
|
6272
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
|
6273
|
+
---------------------------------------------------------------------
|
|
6274
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:39:01 -0500
|
|
6275
|
+
Processing by PagesController#scratch as HTML
|
|
6276
|
+
Rendered pages/scratch.html.erb (0.4ms)
|
|
6277
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
|
6278
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6279
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:39:01 -0500
|
|
6280
|
+
Processing by PagesController#scratch as HTML
|
|
6281
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6282
|
+
Completed 200 OK in 1ms (Views: 0.3ms)
|
|
6283
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6284
|
+
---------------------------------------------------------------------
|
|
6285
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
|
6286
|
+
---------------------------------------------------------------------
|
|
6287
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:39:01 -0500
|
|
6288
|
+
Processing by PagesController#scratch as HTML
|
|
6289
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6290
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6291
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6292
|
+
---------------------------------------------------------------------------
|
|
6293
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
|
6294
|
+
---------------------------------------------------------------------------
|
|
6295
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:39:01 -0500
|
|
6296
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6297
|
+
Rendered pages/multiple_scratch.html.erb (0.9ms)
|
|
6298
|
+
Completed 200 OK in 3ms (Views: 2.5ms)
|
|
6299
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.7ms)
|
|
6300
|
+
---------------------------------------------------------------------------------
|
|
6301
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
|
6302
|
+
---------------------------------------------------------------------------------
|
|
6303
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:39:01 -0500
|
|
6304
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
|
6305
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.9ms)
|
|
6306
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
|
6307
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6308
|
+
----------------------------------------------------------------------------
|
|
6309
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
|
6310
|
+
----------------------------------------------------------------------------
|
|
6311
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:39:01 -0500
|
|
6312
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
|
6313
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.4ms)
|
|
6314
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
|
6315
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6316
|
+
---------------------------------------------------------------------------
|
|
6317
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
|
6318
|
+
---------------------------------------------------------------------------
|
|
6319
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:39:01 -0500
|
|
6320
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6321
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
|
6322
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
6323
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6324
|
+
--------------------------------------------------------------
|
|
6325
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
|
6326
|
+
--------------------------------------------------------------
|
|
6327
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-13 13:39:01 -0500
|
|
6328
|
+
Processing by PagesController#scratch_object as HTML
|
|
6329
|
+
Rendered pages/scratch_object.html.erb (0.4ms)
|
|
6330
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
|
6331
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6332
|
+
------------------------------------------------------
|
|
6333
|
+
RenderingTest: test_scratch_should_render_calling_file
|
|
6334
|
+
------------------------------------------------------
|
|
6335
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:39:01 -0500
|
|
6336
|
+
Processing by PagesController#scratch as HTML
|
|
6337
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6338
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6339
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6340
|
+
------------------------------------------------------
|
|
6341
|
+
RenderingTest: test_scratch_should_render_calling_line
|
|
6342
|
+
------------------------------------------------------
|
|
6343
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:39:01 -0500
|
|
6344
|
+
Processing by PagesController#scratch as HTML
|
|
6345
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6346
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6347
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6348
|
+
-------------------------------------------------------------
|
|
6349
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
|
6350
|
+
-------------------------------------------------------------
|
|
6351
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:39:01 -0500
|
|
6352
|
+
Processing by PagesController#empty as HTML
|
|
6353
|
+
Rendered pages/empty.html.erb (0.0ms)
|
|
6354
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
6355
|
+
-------------------------------------------------------------
|
|
6356
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
|
6357
|
+
-------------------------------------------------------------
|
|
6358
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:39:01 -0500
|
|
6359
|
+
Processing by PagesController#scratch as HTML
|
|
6360
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
|
6361
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
6362
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6363
|
+
--------------------------
|
|
6364
|
+
ScratchpadTest: test_truth
|
|
6365
|
+
--------------------------
|
|
6366
|
+
---------------------------------------------------------------------
|
|
6367
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
|
6368
|
+
---------------------------------------------------------------------
|
|
6369
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:39:09 -0500
|
|
6370
|
+
Processing by PagesController#scratch as HTML
|
|
6371
|
+
Rendered pages/scratch.html.erb (0.9ms)
|
|
6372
|
+
Completed 200 OK in 7ms (Views: 6.5ms)
|
|
6373
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6374
|
+
--------------------------------------------------
|
|
6375
|
+
MiddlewareTest: test_only_scratch_on_html_requests
|
|
6376
|
+
--------------------------------------------------
|
|
6377
|
+
---------------------------------------------------------------------
|
|
6378
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
|
6379
|
+
---------------------------------------------------------------------
|
|
6380
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:39:09 -0500
|
|
6381
|
+
Processing by PagesController#scratch as HTML
|
|
6382
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6383
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6384
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6385
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:39:09 -0500
|
|
6386
|
+
Processing by PagesController#scratch as HTML
|
|
6387
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
|
6388
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
6389
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6390
|
+
-----------------------------------------------------------------------
|
|
6391
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
|
6392
|
+
-----------------------------------------------------------------------
|
|
6393
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:39:09 -0500
|
|
6394
|
+
Processing by PagesController#empty as HTML
|
|
6395
|
+
Rendered pages/empty.html.erb (0.2ms)
|
|
6396
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
|
6397
|
+
---------------------------------------------------------------------------
|
|
6398
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
|
6399
|
+
---------------------------------------------------------------------------
|
|
6400
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:39:09 -0500
|
|
6401
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6402
|
+
Rendered pages/multiple_scratch.html.erb (0.5ms)
|
|
6403
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
|
6404
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.7ms)
|
|
6405
|
+
---------------------------------------------------------------------------
|
|
6406
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
|
6407
|
+
---------------------------------------------------------------------------
|
|
6408
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:39:09 -0500
|
|
6409
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6410
|
+
Rendered pages/multiple_scratch.html.erb (0.4ms)
|
|
6411
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
|
6412
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
|
6413
|
+
------------------------------------------------------
|
|
6414
|
+
RenderingTest: test_scratch_should_render_calling_line
|
|
6415
|
+
------------------------------------------------------
|
|
6416
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:39:09 -0500
|
|
6417
|
+
Processing by PagesController#scratch as HTML
|
|
6418
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6419
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6420
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6421
|
+
-------------------------------------------------------------
|
|
6422
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
|
6423
|
+
-------------------------------------------------------------
|
|
6424
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:39:09 -0500
|
|
6425
|
+
Processing by PagesController#empty as HTML
|
|
6426
|
+
Rendered pages/empty.html.erb (0.0ms)
|
|
6427
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
6428
|
+
--------------------------------------------------------------
|
|
6429
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
|
6430
|
+
--------------------------------------------------------------
|
|
6431
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-13 13:39:09 -0500
|
|
6432
|
+
Processing by PagesController#scratch_object as HTML
|
|
6433
|
+
Rendered pages/scratch_object.html.erb (0.7ms)
|
|
6434
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
|
6435
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6436
|
+
----------------------------------------------------------------------------
|
|
6437
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
|
6438
|
+
----------------------------------------------------------------------------
|
|
6439
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:39:09 -0500
|
|
6440
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
|
6441
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.5ms)
|
|
6442
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
|
6443
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6444
|
+
-------------------------------------------------------------
|
|
6445
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
|
6446
|
+
-------------------------------------------------------------
|
|
6447
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:39:09 -0500
|
|
6448
|
+
Processing by PagesController#scratch as HTML
|
|
6449
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6450
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6451
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6452
|
+
------------------------------------------------------
|
|
6453
|
+
RenderingTest: test_scratch_should_render_calling_file
|
|
6454
|
+
------------------------------------------------------
|
|
6455
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:39:09 -0500
|
|
6456
|
+
Processing by PagesController#scratch as HTML
|
|
6457
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6458
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
6459
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6460
|
+
---------------------------------------------------------------------------------
|
|
6461
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
|
6462
|
+
---------------------------------------------------------------------------------
|
|
6463
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:39:09 -0500
|
|
6464
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
|
6465
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.7ms)
|
|
6466
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
|
6467
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6468
|
+
----------------------------------------------------------------------------
|
|
6469
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
|
6470
|
+
----------------------------------------------------------------------------
|
|
6471
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:46:03 -0500
|
|
6472
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
|
6473
|
+
Rendered pages/scratch_with_changed_object.html.erb (1.3ms)
|
|
6474
|
+
Completed 200 OK in 9ms (Views: 8.8ms)
|
|
6475
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6476
|
+
---------------------------------------------------------------------------------
|
|
6477
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
|
6478
|
+
---------------------------------------------------------------------------------
|
|
6479
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:46:03 -0500
|
|
6480
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
|
6481
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.5ms)
|
|
6482
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
|
6483
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6484
|
+
------------------------------------------------------
|
|
6485
|
+
RenderingTest: test_scratch_should_render_calling_file
|
|
6486
|
+
------------------------------------------------------
|
|
6487
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:46:03 -0500
|
|
6488
|
+
Processing by PagesController#scratch as HTML
|
|
6489
|
+
Rendered pages/scratch.html.erb (0.4ms)
|
|
6490
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
|
6491
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6492
|
+
-------------------------------------------------------------
|
|
6493
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
|
6494
|
+
-------------------------------------------------------------
|
|
6495
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:46:03 -0500
|
|
6496
|
+
Processing by PagesController#scratch as HTML
|
|
6497
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6498
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
6499
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.6ms)
|
|
6500
|
+
---------------------------------------------------------------------------
|
|
6501
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
|
6502
|
+
---------------------------------------------------------------------------
|
|
6503
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:46:03 -0500
|
|
6504
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6505
|
+
Rendered pages/multiple_scratch.html.erb (1.0ms)
|
|
6506
|
+
Completed 200 OK in 2ms (Views: 2.1ms)
|
|
6507
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
|
6508
|
+
---------------------------------------------------------------------------
|
|
6509
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
|
6510
|
+
---------------------------------------------------------------------------
|
|
6511
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:46:03 -0500
|
|
6512
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6513
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
|
6514
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6515
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6516
|
+
------------------------------------------------------
|
|
6517
|
+
RenderingTest: test_scratch_should_render_calling_line
|
|
6518
|
+
------------------------------------------------------
|
|
6519
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:46:03 -0500
|
|
6520
|
+
Processing by PagesController#scratch as HTML
|
|
6521
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6522
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6523
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6524
|
+
--------------------------------------------------------------
|
|
6525
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
|
6526
|
+
--------------------------------------------------------------
|
|
6527
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-13 13:46:03 -0500
|
|
6528
|
+
Processing by PagesController#scratch_object as HTML
|
|
6529
|
+
Rendered pages/scratch_object.html.erb (0.4ms)
|
|
6530
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
|
6531
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
|
6532
|
+
-------------------------------------------------------------
|
|
6533
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
|
6534
|
+
-------------------------------------------------------------
|
|
6535
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:46:03 -0500
|
|
6536
|
+
Processing by PagesController#empty as HTML
|
|
6537
|
+
Rendered pages/empty.html.erb (0.2ms)
|
|
6538
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
|
6539
|
+
--------------------------
|
|
6540
|
+
ScratchpadTest: test_truth
|
|
6541
|
+
--------------------------
|
|
6542
|
+
-----------------------------------------------------------------------
|
|
6543
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
|
6544
|
+
-----------------------------------------------------------------------
|
|
6545
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:46:03 -0500
|
|
6546
|
+
Processing by PagesController#empty as HTML
|
|
6547
|
+
Rendered pages/empty.html.erb (0.0ms)
|
|
6548
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
6549
|
+
---------------------------------------------------------------------
|
|
6550
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
|
6551
|
+
---------------------------------------------------------------------
|
|
6552
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:46:03 -0500
|
|
6553
|
+
Processing by PagesController#scratch as HTML
|
|
6554
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6555
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6556
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
|
6557
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:46:03 -0500
|
|
6558
|
+
Processing by PagesController#scratch as HTML
|
|
6559
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6560
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
6561
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6562
|
+
---------------------------------------------------------------------
|
|
6563
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
|
6564
|
+
---------------------------------------------------------------------
|
|
6565
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:46:03 -0500
|
|
6566
|
+
Processing by PagesController#scratch as HTML
|
|
6567
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
|
6568
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
6569
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.6ms)
|
|
6570
|
+
--------------------------------------------------
|
|
6571
|
+
MiddlewareTest: test_only_scratch_on_html_requests
|
|
6572
|
+
--------------------------------------------------
|
|
6573
|
+
--------------------------
|
|
6574
|
+
ScratchpadTest: test_truth
|
|
6575
|
+
--------------------------
|
|
6576
|
+
-------------------------------------------------------------
|
|
6577
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
|
6578
|
+
-------------------------------------------------------------
|
|
6579
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:46:21 -0500
|
|
6580
|
+
Processing by PagesController#scratch as HTML
|
|
6581
|
+
Rendered pages/scratch.html.erb (0.8ms)
|
|
6582
|
+
Completed 200 OK in 7ms (Views: 7.0ms)
|
|
6583
|
+
------------------------------------------------------
|
|
6584
|
+
RenderingTest: test_scratch_should_render_calling_line
|
|
6585
|
+
------------------------------------------------------
|
|
6586
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:46:21 -0500
|
|
6587
|
+
Processing by PagesController#scratch as HTML
|
|
6588
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6589
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6590
|
+
---------------------------------------------------------------------------------
|
|
6591
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
|
6592
|
+
---------------------------------------------------------------------------------
|
|
6593
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:46:21 -0500
|
|
6594
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
|
6595
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.9ms)
|
|
6596
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
|
6597
|
+
------------------------------------------------------
|
|
6598
|
+
RenderingTest: test_scratch_should_render_calling_file
|
|
6599
|
+
------------------------------------------------------
|
|
6600
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:46:21 -0500
|
|
6601
|
+
Processing by PagesController#scratch as HTML
|
|
6602
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
|
6603
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
6604
|
+
-------------------------------------------------------------
|
|
6605
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
|
6606
|
+
-------------------------------------------------------------
|
|
6607
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:46:21 -0500
|
|
6608
|
+
Processing by PagesController#empty as HTML
|
|
6609
|
+
Rendered pages/empty.html.erb (0.2ms)
|
|
6610
|
+
Completed 200 OK in 1ms (Views: 0.9ms)
|
|
6611
|
+
--------------------------------------------------------------
|
|
6612
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
|
6613
|
+
--------------------------------------------------------------
|
|
6614
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-13 13:46:21 -0500
|
|
6615
|
+
Processing by PagesController#scratch_object as HTML
|
|
6616
|
+
Rendered pages/scratch_object.html.erb (0.4ms)
|
|
6617
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
|
6618
|
+
----------------------------------------------------------------------------
|
|
6619
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
|
6620
|
+
----------------------------------------------------------------------------
|
|
6621
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:46:21 -0500
|
|
6622
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
|
6623
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.4ms)
|
|
6624
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
|
6625
|
+
---------------------------------------------------------------------------
|
|
6626
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
|
6627
|
+
---------------------------------------------------------------------------
|
|
6628
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:46:21 -0500
|
|
6629
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6630
|
+
Rendered pages/multiple_scratch.html.erb (0.5ms)
|
|
6631
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
|
6632
|
+
---------------------------------------------------------------------------
|
|
6633
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
|
6634
|
+
---------------------------------------------------------------------------
|
|
6635
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:46:21 -0500
|
|
6636
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6637
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
|
6638
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6639
|
+
-----------------------------------------------------------------------
|
|
6640
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
|
6641
|
+
-----------------------------------------------------------------------
|
|
6642
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:46:21 -0500
|
|
6643
|
+
Processing by PagesController#empty as HTML
|
|
6644
|
+
Rendered pages/empty.html.erb (0.1ms)
|
|
6645
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6646
|
+
---------------------------------------------------------------------
|
|
6647
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
|
6648
|
+
---------------------------------------------------------------------
|
|
6649
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:46:21 -0500
|
|
6650
|
+
Processing by PagesController#scratch as HTML
|
|
6651
|
+
Rendered pages/scratch.html.erb (0.3ms)
|
|
6652
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
|
6653
|
+
---------------------------------------------------------------------
|
|
6654
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
|
6655
|
+
---------------------------------------------------------------------
|
|
6656
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:46:21 -0500
|
|
6657
|
+
Processing by PagesController#scratch as HTML
|
|
6658
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6659
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
6660
|
+
--------------------------------------------------
|
|
6661
|
+
MiddlewareTest: test_only_scratch_on_html_requests
|
|
6662
|
+
--------------------------------------------------
|
|
6663
|
+
-------------------------------------------------------------
|
|
6664
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
|
6665
|
+
-------------------------------------------------------------
|
|
6666
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:47:53 -0500
|
|
6667
|
+
Processing by PagesController#scratch as HTML
|
|
6668
|
+
Rendered pages/scratch.html.erb (0.9ms)
|
|
6669
|
+
Completed 200 OK in 7ms (Views: 7.1ms)
|
|
6670
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6671
|
+
------------------------------------------------------
|
|
6672
|
+
RenderingTest: test_scratch_should_render_calling_file
|
|
6673
|
+
------------------------------------------------------
|
|
6674
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:47:53 -0500
|
|
6675
|
+
Processing by PagesController#scratch as HTML
|
|
6676
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6677
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6678
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6679
|
+
----------------------------------------------------------------------------
|
|
6680
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
|
6681
|
+
----------------------------------------------------------------------------
|
|
6682
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:47:53 -0500
|
|
6683
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
|
6684
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.8ms)
|
|
6685
|
+
Completed 200 OK in 2ms (Views: 1.7ms)
|
|
6686
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6687
|
+
-------------------------------------------------------------
|
|
6688
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
|
6689
|
+
-------------------------------------------------------------
|
|
6690
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:47:53 -0500
|
|
6691
|
+
Processing by PagesController#empty as HTML
|
|
6692
|
+
Rendered pages/empty.html.erb (0.2ms)
|
|
6693
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
|
6694
|
+
---------------------------------------------------------------------------
|
|
6695
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
|
6696
|
+
---------------------------------------------------------------------------
|
|
6697
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:47:53 -0500
|
|
6698
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6699
|
+
Rendered pages/multiple_scratch.html.erb (0.8ms)
|
|
6700
|
+
Completed 200 OK in 3ms (Views: 2.4ms)
|
|
6701
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.7ms)
|
|
6702
|
+
---------------------------------------------------------------------------------
|
|
6703
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
|
6704
|
+
---------------------------------------------------------------------------------
|
|
6705
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:47:53 -0500
|
|
6706
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
|
6707
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (0.8ms)
|
|
6708
|
+
Completed 200 OK in 2ms (Views: 2.4ms)
|
|
6709
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6710
|
+
------------------------------------------------------
|
|
6711
|
+
RenderingTest: test_scratch_should_render_calling_line
|
|
6712
|
+
------------------------------------------------------
|
|
6713
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:47:53 -0500
|
|
6714
|
+
Processing by PagesController#scratch as HTML
|
|
6715
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6716
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6717
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6718
|
+
--------------------------------------------------------------
|
|
6719
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
|
6720
|
+
--------------------------------------------------------------
|
|
6721
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-13 13:47:53 -0500
|
|
6722
|
+
Processing by PagesController#scratch_object as HTML
|
|
6723
|
+
Rendered pages/scratch_object.html.erb (0.4ms)
|
|
6724
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
|
6725
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6726
|
+
---------------------------------------------------------------------------
|
|
6727
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
|
6728
|
+
---------------------------------------------------------------------------
|
|
6729
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:47:53 -0500
|
|
6730
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6731
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
|
6732
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
6733
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6734
|
+
--------------------------
|
|
6735
|
+
ScratchpadTest: test_truth
|
|
6736
|
+
--------------------------
|
|
6737
|
+
--------------------------------------------------
|
|
6738
|
+
MiddlewareTest: test_only_scratch_on_html_requests
|
|
6739
|
+
--------------------------------------------------
|
|
6740
|
+
-----------------------------------------------------------------------
|
|
6741
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
|
6742
|
+
-----------------------------------------------------------------------
|
|
6743
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:47:53 -0500
|
|
6744
|
+
Processing by PagesController#empty as HTML
|
|
6745
|
+
Rendered pages/empty.html.erb (0.0ms)
|
|
6746
|
+
Completed 200 OK in 0ms (Views: 0.2ms)
|
|
6747
|
+
---------------------------------------------------------------------
|
|
6748
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
|
6749
|
+
---------------------------------------------------------------------
|
|
6750
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:47:53 -0500
|
|
6751
|
+
Processing by PagesController#scratch as HTML
|
|
6752
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6753
|
+
Completed 200 OK in 0ms (Views: 0.5ms)
|
|
6754
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6755
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:47:53 -0500
|
|
6756
|
+
Processing by PagesController#scratch as HTML
|
|
6757
|
+
Rendered pages/scratch.html.erb (0.1ms)
|
|
6758
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
6759
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6760
|
+
---------------------------------------------------------------------
|
|
6761
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
|
6762
|
+
---------------------------------------------------------------------
|
|
6763
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:47:53 -0500
|
|
6764
|
+
Processing by PagesController#scratch as HTML
|
|
6765
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6766
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6767
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6768
|
+
--------------------------------------------------
|
|
6769
|
+
MiddlewareTest: test_only_scratch_on_html_requests
|
|
6770
|
+
--------------------------------------------------
|
|
6771
|
+
---------------------------------------------------------------------
|
|
6772
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
|
6773
|
+
---------------------------------------------------------------------
|
|
6774
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:59:01 -0500
|
|
6775
|
+
Processing by PagesController#scratch as HTML
|
|
6776
|
+
Rendered pages/scratch.html.erb (0.9ms)
|
|
6777
|
+
Completed 200 OK in 8ms (Views: 7.9ms)
|
|
6778
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.7ms)
|
|
6779
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:59:01 -0500
|
|
6780
|
+
Processing by PagesController#scratch as HTML
|
|
6781
|
+
Rendered pages/scratch.html.erb (0.4ms)
|
|
6782
|
+
Completed 200 OK in 1ms (Views: 0.7ms)
|
|
6783
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
|
6784
|
+
---------------------------------------------------------------------
|
|
6785
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
|
6786
|
+
---------------------------------------------------------------------
|
|
6787
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:59:01 -0500
|
|
6788
|
+
Processing by PagesController#scratch as HTML
|
|
6789
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6790
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
6791
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.6ms)
|
|
6792
|
+
-----------------------------------------------------------------------
|
|
6793
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
|
6794
|
+
-----------------------------------------------------------------------
|
|
6795
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:59:01 -0500
|
|
6796
|
+
Processing by PagesController#empty as HTML
|
|
6797
|
+
Rendered pages/empty.html.erb (0.2ms)
|
|
6798
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
|
6799
|
+
--------------------------
|
|
6800
|
+
ScratchpadTest: test_truth
|
|
6801
|
+
--------------------------
|
|
6802
|
+
------------------------------------------------------
|
|
6803
|
+
RenderingTest: test_scratch_should_render_calling_file
|
|
6804
|
+
------------------------------------------------------
|
|
6805
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:59:01 -0500
|
|
6806
|
+
Processing by PagesController#scratch as HTML
|
|
6807
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6808
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6809
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6810
|
+
---------------------------------------------------------------------------------
|
|
6811
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
|
6812
|
+
---------------------------------------------------------------------------------
|
|
6813
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:59:01 -0500
|
|
6814
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
|
6815
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (2.2ms)
|
|
6816
|
+
Completed 200 OK in 4ms (Views: 3.9ms)
|
|
6817
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
|
6818
|
+
------------------------------------------------------
|
|
6819
|
+
RenderingTest: test_scratch_should_render_calling_line
|
|
6820
|
+
------------------------------------------------------
|
|
6821
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:59:01 -0500
|
|
6822
|
+
Processing by PagesController#scratch as HTML
|
|
6823
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6824
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6825
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
|
6826
|
+
----------------------------------------------------------------------------
|
|
6827
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
|
6828
|
+
----------------------------------------------------------------------------
|
|
6829
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 13:59:01 -0500
|
|
6830
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
|
6831
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.4ms)
|
|
6832
|
+
Completed 200 OK in 1ms (Views: 1.4ms)
|
|
6833
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6834
|
+
-------------------------------------------------------------
|
|
6835
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
|
6836
|
+
-------------------------------------------------------------
|
|
6837
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 13:59:01 -0500
|
|
6838
|
+
Processing by PagesController#empty as HTML
|
|
6839
|
+
Rendered pages/empty.html.erb (0.0ms)
|
|
6840
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6841
|
+
--------------------------------------------------------------
|
|
6842
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
|
6843
|
+
--------------------------------------------------------------
|
|
6844
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-13 13:59:01 -0500
|
|
6845
|
+
Processing by PagesController#scratch_object as HTML
|
|
6846
|
+
Rendered pages/scratch_object.html.erb (0.4ms)
|
|
6847
|
+
Completed 200 OK in 1ms (Views: 1.3ms)
|
|
6848
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6849
|
+
-------------------------------------------------------------
|
|
6850
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
|
6851
|
+
-------------------------------------------------------------
|
|
6852
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 13:59:01 -0500
|
|
6853
|
+
Processing by PagesController#scratch as HTML
|
|
6854
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6855
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6856
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6857
|
+
---------------------------------------------------------------------------
|
|
6858
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
|
6859
|
+
---------------------------------------------------------------------------
|
|
6860
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:59:01 -0500
|
|
6861
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6862
|
+
Rendered pages/multiple_scratch.html.erb (0.8ms)
|
|
6863
|
+
Completed 200 OK in 2ms (Views: 2.0ms)
|
|
6864
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
|
6865
|
+
---------------------------------------------------------------------------
|
|
6866
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
|
6867
|
+
---------------------------------------------------------------------------
|
|
6868
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 13:59:01 -0500
|
|
6869
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6870
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
|
6871
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
6872
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6873
|
+
---------------------------------------------------------------------------------
|
|
6874
|
+
RenderingTest: test_object_scratches_should_render_changed_object_at_each_scratch
|
|
6875
|
+
---------------------------------------------------------------------------------
|
|
6876
|
+
Started GET "/multiple_scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 14:12:49 -0500
|
|
6877
|
+
Processing by PagesController#multiple_scratch_with_changed_object as HTML
|
|
6878
|
+
Rendered pages/multiple_scratch_with_changed_object.html.erb (2.4ms)
|
|
6879
|
+
Completed 200 OK in 11ms (Views: 10.9ms)
|
|
6880
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.6ms)
|
|
6881
|
+
---------------------------------------------------------------------------
|
|
6882
|
+
RenderingTest: test_multiple_scratches_should_render_for_multiple_scratches
|
|
6883
|
+
---------------------------------------------------------------------------
|
|
6884
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 14:12:49 -0500
|
|
6885
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6886
|
+
Rendered pages/multiple_scratch.html.erb (0.5ms)
|
|
6887
|
+
Completed 200 OK in 2ms (Views: 1.5ms)
|
|
6888
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6889
|
+
-------------------------------------------------------------
|
|
6890
|
+
RenderingTest: test_the_scratchpad_should_not_render_if_empty
|
|
6891
|
+
-------------------------------------------------------------
|
|
6892
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 14:12:50 -0500
|
|
6893
|
+
Processing by PagesController#empty as HTML
|
|
6894
|
+
Rendered pages/empty.html.erb (0.2ms)
|
|
6895
|
+
Completed 200 OK in 1ms (Views: 1.0ms)
|
|
6896
|
+
------------------------------------------------------
|
|
6897
|
+
RenderingTest: test_scratch_should_render_calling_line
|
|
6898
|
+
------------------------------------------------------
|
|
6899
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 14:12:50 -0500
|
|
6900
|
+
Processing by PagesController#scratch as HTML
|
|
6901
|
+
Rendered pages/scratch.html.erb (0.4ms)
|
|
6902
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
|
6903
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6904
|
+
----------------------------------------------------------------------------
|
|
6905
|
+
RenderingTest: test_object_scratches_should_render_object_at_time_of_scratch
|
|
6906
|
+
----------------------------------------------------------------------------
|
|
6907
|
+
Started GET "/scratch_with_changed_object" for 127.0.0.1 at 2015-01-13 14:12:50 -0500
|
|
6908
|
+
Processing by PagesController#scratch_with_changed_object as HTML
|
|
6909
|
+
Rendered pages/scratch_with_changed_object.html.erb (0.5ms)
|
|
6910
|
+
Completed 200 OK in 2ms (Views: 1.6ms)
|
|
6911
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6912
|
+
--------------------------------------------------------------
|
|
6913
|
+
RenderingTest: test_object_scratches_should_inspect_the_object
|
|
6914
|
+
--------------------------------------------------------------
|
|
6915
|
+
Started GET "/scratch_object" for 127.0.0.1 at 2015-01-13 14:12:50 -0500
|
|
6916
|
+
Processing by PagesController#scratch_object as HTML
|
|
6917
|
+
Rendered pages/scratch_object.html.erb (0.4ms)
|
|
6918
|
+
Completed 200 OK in 1ms (Views: 1.2ms)
|
|
6919
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|
|
6920
|
+
-------------------------------------------------------------
|
|
6921
|
+
RenderingTest: test_the_scratchpad_should_render_if_not_empty
|
|
6922
|
+
-------------------------------------------------------------
|
|
6923
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 14:12:50 -0500
|
|
6924
|
+
Processing by PagesController#scratch as HTML
|
|
6925
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6926
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6927
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6928
|
+
------------------------------------------------------
|
|
6929
|
+
RenderingTest: test_scratch_should_render_calling_file
|
|
6930
|
+
------------------------------------------------------
|
|
6931
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 14:12:50 -0500
|
|
6932
|
+
Processing by PagesController#scratch as HTML
|
|
6933
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6934
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6935
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6936
|
+
---------------------------------------------------------------------------
|
|
6937
|
+
RenderingTest: test_only_one_scratchpad_should_render_if_multiple_scratches
|
|
6938
|
+
---------------------------------------------------------------------------
|
|
6939
|
+
Started GET "/multiple_scratch" for 127.0.0.1 at 2015-01-13 14:12:50 -0500
|
|
6940
|
+
Processing by PagesController#multiple_scratch as HTML
|
|
6941
|
+
Rendered pages/multiple_scratch.html.erb (0.3ms)
|
|
6942
|
+
Completed 200 OK in 1ms (Views: 0.5ms)
|
|
6943
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6944
|
+
--------------------------
|
|
6945
|
+
ScratchpadTest: test_truth
|
|
6946
|
+
--------------------------
|
|
6947
|
+
-----------------------------------------------------------------------
|
|
6948
|
+
MiddlewareTest: test_the_scratchpad_should_exist_without_adding_content
|
|
6949
|
+
-----------------------------------------------------------------------
|
|
6950
|
+
Started GET "/" for 127.0.0.1 at 2015-01-13 14:12:50 -0500
|
|
6951
|
+
Processing by PagesController#empty as HTML
|
|
6952
|
+
Rendered pages/empty.html.erb (0.0ms)
|
|
6953
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
6954
|
+
---------------------------------------------------------------------
|
|
6955
|
+
MiddlewareTest: test_the_scratchpad_should_exist_after_adding_content
|
|
6956
|
+
---------------------------------------------------------------------
|
|
6957
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 14:12:50 -0500
|
|
6958
|
+
Processing by PagesController#scratch as HTML
|
|
6959
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6960
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6961
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.5ms)
|
|
6962
|
+
---------------------------------------------------------------------
|
|
6963
|
+
MiddlewareTest: test_the_scratchpad_should_be_unique_between_requests
|
|
6964
|
+
---------------------------------------------------------------------
|
|
6965
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 14:12:50 -0500
|
|
6966
|
+
Processing by PagesController#scratch as HTML
|
|
6967
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6968
|
+
Completed 200 OK in 0ms (Views: 0.4ms)
|
|
6969
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.4ms)
|
|
6970
|
+
Started GET "/scratch" for 127.0.0.1 at 2015-01-13 14:12:50 -0500
|
|
6971
|
+
Processing by PagesController#scratch as HTML
|
|
6972
|
+
Rendered pages/scratch.html.erb (0.2ms)
|
|
6973
|
+
Completed 200 OK in 0ms (Views: 0.3ms)
|
|
6974
|
+
Rendered /Users/mcianni/code/scratchpad/app/views/scratchpad.html.erb (0.3ms)
|