gara 0.1.5 → 0.1.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a5067fe61448ba3755093b36f033ead128b9d2f3
4
- data.tar.gz: 9858e978222f8e32772e1b94878835f8aa17d1bd
3
+ metadata.gz: 36cf35027ffe62692b1d84225791e2b9d0f17199
4
+ data.tar.gz: 24e119b705840906bd7fa51877d54fb44fd60d7d
5
5
  SHA512:
6
- metadata.gz: f56437c4020f584af2594130b84e65c0e6269eb335f6e0743bcf119a819456519a0a583b6449fa0f6cb1c16beb7a35afb61e84ec7bee245feb24e7f31d57e0a0
7
- data.tar.gz: 8b54630b86118fb99a77e02a5c1007edac24bec50df772d84ca1da1304de2cb6183fa6b28bcce354c38f0d5e4c991bf1250eb5cf888958950bb94a30462a7ea3
6
+ metadata.gz: e9b0a8a61a681a44932185c737b2003a936a2ad38f5a1319d90da705335d3f1a2bdd5d0981088b9ce63d370d7883b1d6f37e8334e2a0374d34eb3eb9345a6dfc
7
+ data.tar.gz: 20265f95709ee802b99600ff3ed6cab458891fc4bdbc26019e65e2084e915734c0ffdc6eac517ced329c9aa682c4f37d4566de4884c8873fbf282dede0ae213f
data/README.md CHANGED
@@ -22,7 +22,7 @@ Change your template to look like this.
22
22
  csrf_meta_tags
23
23
  }
24
24
  body {
25
- self << yield
25
+ yield
26
26
  javascript_include_tag "application"
27
27
  }
28
28
  }
@@ -3,19 +3,10 @@ module Gara
3
3
  class Delegator
4
4
  attr_accessor :emitter
5
5
 
6
- def self.define_delegate(method_name, on: nil, to: nil)
7
- on.module_eval <<-RUBY
8
- def #{method_name}(*args)
9
- #{to || "@gara_delegate"}.#{method_name}(*args) { yield if block_given? }
10
- end
11
- RUBY
12
- end
13
-
14
-
15
6
  def initialize(view_context, emitter)
16
7
  @emitter = emitter
17
8
  view_context.instance_variable_set(:@gara_delegate, emitter)
18
- view_context.extend(emitter.registered_methods)
9
+ emitter.add_methods_to(view_context)
19
10
  yield if block_given?
20
11
  end
21
12
 
@@ -24,32 +24,79 @@ module Gara
24
24
  :tr, :track,
25
25
  :u, :ul,
26
26
  :var, :video,
27
- :wbr, :<<]
27
+ :wbr]
28
28
 
29
29
  class Html5Emitter
30
30
 
31
- module TagMethods
32
- Gara::HTML5_TAGS.each do |tag|
33
- Gara::Delegator.define_delegate tag, on: self
34
- end
31
+ def self.debug(msg)
32
+ puts msg if ENV['DEBUG']
35
33
  end
36
34
 
37
- attr_accessor :target
38
35
  def initialize
39
36
  @doc = Nokogiri::HTML::DocumentFragment.parse("")
40
37
  @gara_delegate = Nokogiri::HTML::Builder.with(@doc)
41
- extend TagMethods
42
38
  end
43
39
 
44
- def registered_methods
45
- return TagMethods
40
+ def add_methods_to(context)
41
+
42
+ builder = @gara_delegate # create a local binding so we can access builder in an instance of Context
43
+ proc_hash = HTML5_TAGS.inject({}) do |hash, tag|
44
+ hash[tag] = -> (*args, &block) {
45
+ begin
46
+ builder.public_send(tag, *args) do # public send is necessary due to send accessing private method Kernel#p
47
+ unless block.nil?
48
+ result = block.call # necessary to make sure block executes in Context not Builder
49
+ if result.kind_of?(String)
50
+ self << result # add any string returned to the document so that: p { "works" } yields "<p>works</p>"
51
+ else
52
+ result
53
+ end
54
+ end
55
+ end
56
+ rescue Exception => e
57
+ binding.pry
58
+ end
59
+ }
60
+ hash
61
+ end
62
+
63
+
64
+ # Open the eigenclass of the passed in context so we can add the procs created above as tag methods
65
+ eigenclass_of_context =
66
+ class << context ; self ; end
67
+ proc_hash.each do |method_name, proc|
68
+ eigenclass_of_context.send(:define_method, method_name, &proc)
69
+ end
70
+ eigenclass_of_context.send(:define_method, :<<) do |string|
71
+ builder << string if string.kind_of?(String)
72
+ end
73
+
74
+ helper_methods = eigenclass_of_context.instance_methods
75
+ helper_methods -= HTML5_TAGS
76
+ helper_methods -= Object.instance_methods
77
+ helper_methods.reject! {|method| method.to_s.match(/(_\d+_\d+$)|(lookup_context)|(<<)/) }
78
+
79
+ helper_methods.each do |method|
80
+
81
+ eigenclass_of_context.class_eval do
82
+ define_method method do |*args, &block_for_helper|
83
+ result = super(*args, &block_for_helper)
84
+ if result.kind_of? String
85
+ self << result
86
+ else
87
+ result
88
+ end
89
+ end
90
+ end
91
+ end
92
+
46
93
  end
47
94
 
48
95
  def emit
49
96
  nodes = @doc.children
50
97
  if nodes.length.eql?(1) && nodes.first.name.eql?("html")
51
98
  # necessary to include doctype - TODO: avoid calling to_html twice
52
- Nokogiri::HTML::Document.parse( @doc.to_html ).to_xhtml(indent: 2)
99
+ Nokogiri::HTML::Document.parse( @doc.to_html ).to_html
53
100
  else
54
101
  @doc.to_html
55
102
  end
@@ -1,3 +1,3 @@
1
1
  module Gara
2
- VERSION = "0.1.5"
2
+ VERSION = "0.1.6"
3
3
  end
@@ -8,7 +8,7 @@ html(lang: "en") {
8
8
  csrf_meta_tags
9
9
  }
10
10
  body {
11
- self << yield
11
+ yield
12
12
  javascript_include_tag "application"
13
13
  }
14
14
  }
@@ -4596,3 +4596,2892 @@ HelloControllerTest: test_should_get_show
4596
4596
  Processing by HelloController#show as HTML
4597
4597
  Rendered hello/show.html.gara within layouts/application (0.8ms)
4598
4598
  Completed 200 OK in 17ms (Views: 16.9ms)
4599
+ -----------------------------
4600
+ HandlerTest: test_class_names
4601
+ -----------------------------
4602
+ ----------------------------------------------------------
4603
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
4604
+ ----------------------------------------------------------
4605
+ -----------------------------
4606
+ HandlerTest: test_locals_work
4607
+ -----------------------------
4608
+ ------------------------------------------------------------
4609
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
4610
+ ------------------------------------------------------------
4611
+ --------------------------------------------------------------------------------------
4612
+ HandlerTest: test_nesting_elements_with_ruby_block_structure_using_nav_with_breadcrumb
4613
+ --------------------------------------------------------------------------------------
4614
+ ----------------------------------
4615
+ HandlerTest: test_other_attributes
4616
+ ----------------------------------
4617
+ -------------------------------------------
4618
+ HandlerTest: test_our_handler_is_registered
4619
+ -------------------------------------------
4620
+ -------------------------------------------------------
4621
+ HandlerTest: test_real_document_has_doctype_and_newline
4622
+ -------------------------------------------------------
4623
+ -----------------------------------------
4624
+ HelloControllerTest: test_should_get_show
4625
+ -----------------------------------------
4626
+ Processing by HelloController#show as HTML
4627
+ Rendered hello/show.html.gara within layouts/application (1.3ms)
4628
+ Completed 200 OK in 25ms (Views: 24.8ms)
4629
+ ---------------------------------------------
4630
+ GaraTest: test_Gara.render_renders_a_template
4631
+ ---------------------------------------------
4632
+ ----------------------------------------------
4633
+ GaraTest: test_another_emitter_may_be_supplied
4634
+ ----------------------------------------------
4635
+ ----------------------------------
4636
+ GaraTest: test_performance_is_okay
4637
+ ----------------------------------
4638
+ -------------------------------
4639
+ GaraTest: test_we_have_a_module
4640
+ -------------------------------
4641
+ -----------------------------
4642
+ HandlerTest: test_class_names
4643
+ -----------------------------
4644
+ ----------------------------------------------------------
4645
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
4646
+ ----------------------------------------------------------
4647
+ -----------------------------
4648
+ HandlerTest: test_locals_work
4649
+ -----------------------------
4650
+ ------------------------------------------------------------
4651
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
4652
+ ------------------------------------------------------------
4653
+ --------------------------------------------------------------------------------------
4654
+ HandlerTest: test_nesting_elements_with_ruby_block_structure_using_nav_with_breadcrumb
4655
+ --------------------------------------------------------------------------------------
4656
+ ----------------------------------
4657
+ HandlerTest: test_other_attributes
4658
+ ----------------------------------
4659
+ -------------------------------------------
4660
+ HandlerTest: test_our_handler_is_registered
4661
+ -------------------------------------------
4662
+ -------------------------------------------------------
4663
+ HandlerTest: test_real_document_has_doctype_and_newline
4664
+ -------------------------------------------------------
4665
+ ---------------------------------------------
4666
+ GaraTest: test_Gara.render_renders_a_template
4667
+ ---------------------------------------------
4668
+ ----------------------------------------------
4669
+ GaraTest: test_another_emitter_may_be_supplied
4670
+ ----------------------------------------------
4671
+ ----------------------------------
4672
+ GaraTest: test_performance_is_okay
4673
+ ----------------------------------
4674
+ -------------------------------
4675
+ GaraTest: test_we_have_a_module
4676
+ -------------------------------
4677
+ -----------------------------------------
4678
+ HelloControllerTest: test_should_get_show
4679
+ -----------------------------------------
4680
+ Processing by HelloController#show as HTML
4681
+ Rendered hello/show.html.gara within layouts/application (0.7ms)
4682
+ Completed 200 OK in 18ms (Views: 17.6ms)
4683
+ -----------------------------
4684
+ HandlerTest: test_class_names
4685
+ -----------------------------
4686
+ ----------------------------------------------------------
4687
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
4688
+ ----------------------------------------------------------
4689
+ -----------------------------
4690
+ HandlerTest: test_locals_work
4691
+ -----------------------------
4692
+ ------------------------------------------------------------
4693
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
4694
+ ------------------------------------------------------------
4695
+ --------------------------------------------------------------------------------------
4696
+ HandlerTest: test_nesting_elements_with_ruby_block_structure_using_nav_with_breadcrumb
4697
+ --------------------------------------------------------------------------------------
4698
+ ----------------------------------
4699
+ HandlerTest: test_other_attributes
4700
+ ----------------------------------
4701
+ -------------------------------------------
4702
+ HandlerTest: test_our_handler_is_registered
4703
+ -------------------------------------------
4704
+ -------------------------------------------------------
4705
+ HandlerTest: test_real_document_has_doctype_and_newline
4706
+ -------------------------------------------------------
4707
+ ---------------------------------------------
4708
+ GaraTest: test_Gara.render_renders_a_template
4709
+ ---------------------------------------------
4710
+ ----------------------------------------------
4711
+ GaraTest: test_another_emitter_may_be_supplied
4712
+ ----------------------------------------------
4713
+ ----------------------------------
4714
+ GaraTest: test_performance_is_okay
4715
+ ----------------------------------
4716
+ -------------------------------
4717
+ GaraTest: test_we_have_a_module
4718
+ -------------------------------
4719
+ -----------------------------------------
4720
+ HelloControllerTest: test_should_get_show
4721
+ -----------------------------------------
4722
+ Processing by HelloController#show as HTML
4723
+ Rendered hello/show.html.gara within layouts/application (0.8ms)
4724
+ Completed 200 OK in 18ms (Views: 18.2ms)
4725
+ -----------------------------
4726
+ HandlerTest: test_class_names
4727
+ -----------------------------
4728
+ ----------------------------------------------------------
4729
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
4730
+ ----------------------------------------------------------
4731
+ -----------------------------
4732
+ HandlerTest: test_locals_work
4733
+ -----------------------------
4734
+ ------------------------------------------------------------
4735
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
4736
+ ------------------------------------------------------------
4737
+ --------------------------------------------------------------------------------------
4738
+ HandlerTest: test_nesting_elements_with_ruby_block_structure_using_nav_with_breadcrumb
4739
+ --------------------------------------------------------------------------------------
4740
+ ----------------------------------
4741
+ HandlerTest: test_other_attributes
4742
+ ----------------------------------
4743
+ -------------------------------------------
4744
+ HandlerTest: test_our_handler_is_registered
4745
+ -------------------------------------------
4746
+ -------------------------------------------------------
4747
+ HandlerTest: test_real_document_has_doctype_and_newline
4748
+ -------------------------------------------------------
4749
+ -----------------------------------------
4750
+ HelloControllerTest: test_should_get_show
4751
+ -----------------------------------------
4752
+ Processing by HelloController#show as HTML
4753
+ Rendered hello/show.html.gara within layouts/application (1.0ms)
4754
+ Completed 200 OK in 16ms (Views: 16.2ms)
4755
+ ---------------------------------------------
4756
+ GaraTest: test_Gara.render_renders_a_template
4757
+ ---------------------------------------------
4758
+ ----------------------------------------------
4759
+ GaraTest: test_another_emitter_may_be_supplied
4760
+ ----------------------------------------------
4761
+ ----------------------------------
4762
+ GaraTest: test_performance_is_okay
4763
+ ----------------------------------
4764
+ -------------------------------
4765
+ GaraTest: test_we_have_a_module
4766
+ -------------------------------
4767
+ ---------------------------------------------
4768
+ GaraTest: test_Gara.render_renders_a_template
4769
+ ---------------------------------------------
4770
+ ----------------------------------------------
4771
+ GaraTest: test_another_emitter_may_be_supplied
4772
+ ----------------------------------------------
4773
+ ----------------------------------
4774
+ GaraTest: test_performance_is_okay
4775
+ ----------------------------------
4776
+ -------------------------------
4777
+ GaraTest: test_we_have_a_module
4778
+ -------------------------------
4779
+ -----------------------------
4780
+ HandlerTest: test_class_names
4781
+ -----------------------------
4782
+ ----------------------------------------------------------
4783
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
4784
+ ----------------------------------------------------------
4785
+ -----------------------------
4786
+ HandlerTest: test_locals_work
4787
+ -----------------------------
4788
+ ------------------------------------------------------------
4789
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
4790
+ ------------------------------------------------------------
4791
+ --------------------------------------------------------------------------------------
4792
+ HandlerTest: test_nesting_elements_with_ruby_block_structure_using_nav_with_breadcrumb
4793
+ --------------------------------------------------------------------------------------
4794
+ ----------------------------------
4795
+ HandlerTest: test_other_attributes
4796
+ ----------------------------------
4797
+ -------------------------------------------
4798
+ HandlerTest: test_our_handler_is_registered
4799
+ -------------------------------------------
4800
+ -------------------------------------------------------
4801
+ HandlerTest: test_real_document_has_doctype_and_newline
4802
+ -------------------------------------------------------
4803
+ -----------------------------------------
4804
+ HelloControllerTest: test_should_get_show
4805
+ -----------------------------------------
4806
+ Processing by HelloController#show as HTML
4807
+ Rendered hello/show.html.gara within layouts/application (1.1ms)
4808
+ Completed 200 OK in 20ms (Views: 19.7ms)
4809
+ -----------------------------------------
4810
+ HelloControllerTest: test_should_get_show
4811
+ -----------------------------------------
4812
+ Processing by HelloController#show as HTML
4813
+ Rendered hello/show.html.gara within layouts/application (1.0ms)
4814
+ Completed 200 OK in 18ms (Views: 17.9ms)
4815
+ ---------------------------------------------
4816
+ GaraTest: test_Gara.render_renders_a_template
4817
+ ---------------------------------------------
4818
+ ----------------------------------------------
4819
+ GaraTest: test_another_emitter_may_be_supplied
4820
+ ----------------------------------------------
4821
+ ----------------------------------
4822
+ GaraTest: test_performance_is_okay
4823
+ ----------------------------------
4824
+ -------------------------------
4825
+ GaraTest: test_we_have_a_module
4826
+ -------------------------------
4827
+ -----------------------------
4828
+ HandlerTest: test_class_names
4829
+ -----------------------------
4830
+ ----------------------------------------------------------
4831
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
4832
+ ----------------------------------------------------------
4833
+ -----------------------------
4834
+ HandlerTest: test_locals_work
4835
+ -----------------------------
4836
+ ------------------------------------------------------------
4837
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
4838
+ ------------------------------------------------------------
4839
+ --------------------------------------------------------------------------------------
4840
+ HandlerTest: test_nesting_elements_with_ruby_block_structure_using_nav_with_breadcrumb
4841
+ --------------------------------------------------------------------------------------
4842
+ ----------------------------------
4843
+ HandlerTest: test_other_attributes
4844
+ ----------------------------------
4845
+ -------------------------------------------
4846
+ HandlerTest: test_our_handler_is_registered
4847
+ -------------------------------------------
4848
+ -------------------------------------------------------
4849
+ HandlerTest: test_real_document_has_doctype_and_newline
4850
+ -------------------------------------------------------
4851
+ ---------------------------------------------
4852
+ GaraTest: test_Gara.render_renders_a_template
4853
+ ---------------------------------------------
4854
+ ----------------------------------------------
4855
+ GaraTest: test_another_emitter_may_be_supplied
4856
+ ----------------------------------------------
4857
+ ----------------------------------
4858
+ GaraTest: test_performance_is_okay
4859
+ ----------------------------------
4860
+ -------------------------------
4861
+ GaraTest: test_we_have_a_module
4862
+ -------------------------------
4863
+ -----------------------------
4864
+ HandlerTest: test_class_names
4865
+ -----------------------------
4866
+ ----------------------------------------------------------
4867
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
4868
+ ----------------------------------------------------------
4869
+ -----------------------------
4870
+ HandlerTest: test_locals_work
4871
+ -----------------------------
4872
+ ------------------------------------------------------------
4873
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
4874
+ ------------------------------------------------------------
4875
+ --------------------------------------------------------------------------------------
4876
+ HandlerTest: test_nesting_elements_with_ruby_block_structure_using_nav_with_breadcrumb
4877
+ --------------------------------------------------------------------------------------
4878
+ ----------------------------------
4879
+ HandlerTest: test_other_attributes
4880
+ ----------------------------------
4881
+ -------------------------------------------
4882
+ HandlerTest: test_our_handler_is_registered
4883
+ -------------------------------------------
4884
+ -------------------------------------------------------
4885
+ HandlerTest: test_real_document_has_doctype_and_newline
4886
+ -------------------------------------------------------
4887
+ -----------------------------------------
4888
+ HelloControllerTest: test_should_get_show
4889
+ -----------------------------------------
4890
+ Processing by HelloController#show as HTML
4891
+ Rendered hello/show.html.gara within layouts/application (1.1ms)
4892
+ Completed 200 OK in 29ms (Views: 28.9ms)
4893
+ ---------------------------------------------
4894
+ GaraTest: test_Gara.render_renders_a_template
4895
+ ---------------------------------------------
4896
+ ----------------------------------------------
4897
+ GaraTest: test_another_emitter_may_be_supplied
4898
+ ----------------------------------------------
4899
+ ----------------------------------
4900
+ GaraTest: test_performance_is_okay
4901
+ ----------------------------------
4902
+ -------------------------------
4903
+ GaraTest: test_we_have_a_module
4904
+ -------------------------------
4905
+ -----------------------------
4906
+ HandlerTest: test_class_names
4907
+ -----------------------------
4908
+ ----------------------------------------------------------
4909
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
4910
+ ----------------------------------------------------------
4911
+ -----------------------------
4912
+ HandlerTest: test_locals_work
4913
+ -----------------------------
4914
+ ------------------------------------------------------------
4915
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
4916
+ ------------------------------------------------------------
4917
+ ----------------------------------
4918
+ HandlerTest: test_other_attributes
4919
+ ----------------------------------
4920
+ -------------------------------------------
4921
+ HandlerTest: test_our_handler_is_registered
4922
+ -------------------------------------------
4923
+ -------------------------------------------------------
4924
+ HandlerTest: test_real_document_has_doctype_and_newline
4925
+ -------------------------------------------------------
4926
+ -----------------------------------------
4927
+ HelloControllerTest: test_should_get_show
4928
+ -----------------------------------------
4929
+ Processing by HelloController#show as HTML
4930
+ Rendered hello/show.html.gara within layouts/application (0.7ms)
4931
+ Completed 200 OK in 15ms (Views: 14.3ms)
4932
+ ---------------------------------------------
4933
+ GaraTest: test_Gara.render_renders_a_template
4934
+ ---------------------------------------------
4935
+ ----------------------------------------------
4936
+ GaraTest: test_another_emitter_may_be_supplied
4937
+ ----------------------------------------------
4938
+ ----------------------------------
4939
+ GaraTest: test_performance_is_okay
4940
+ ----------------------------------
4941
+ -------------------------------
4942
+ GaraTest: test_we_have_a_module
4943
+ -------------------------------
4944
+ -----------------------------------------
4945
+ HelloControllerTest: test_should_get_show
4946
+ -----------------------------------------
4947
+ Processing by HelloController#show as HTML
4948
+ Rendered hello/show.html.gara within layouts/application (1046.4ms)
4949
+ Completed 500 Internal Server Error in 1053ms
4950
+ -----------------------------
4951
+ HandlerTest: test_class_names
4952
+ -----------------------------
4953
+ ------------------------------------------------------------------
4954
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
4955
+ ------------------------------------------------------------------
4956
+ ----------------------------------------------------------
4957
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
4958
+ ----------------------------------------------------------
4959
+ -----------------------------
4960
+ HandlerTest: test_locals_work
4961
+ -----------------------------
4962
+ ------------------------------------------------------------
4963
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
4964
+ ------------------------------------------------------------
4965
+ ----------------------------------
4966
+ HandlerTest: test_other_attributes
4967
+ ----------------------------------
4968
+ -------------------------------------------
4969
+ HandlerTest: test_our_handler_is_registered
4970
+ -------------------------------------------
4971
+ -------------------------------------------------------
4972
+ HandlerTest: test_real_document_has_doctype_and_newline
4973
+ -------------------------------------------------------
4974
+ -----------------------------
4975
+ HandlerTest: test_class_names
4976
+ -----------------------------
4977
+ ------------------------------------------------------------------
4978
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
4979
+ ------------------------------------------------------------------
4980
+ ---------------------------------------------------------------------------------------------
4981
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
4982
+ ---------------------------------------------------------------------------------------------
4983
+ ----------------------------------------------------------
4984
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
4985
+ ----------------------------------------------------------
4986
+ -----------------------------
4987
+ HandlerTest: test_locals_work
4988
+ -----------------------------
4989
+ ------------------------------------------------------------
4990
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
4991
+ ------------------------------------------------------------
4992
+ ----------------------------------
4993
+ HandlerTest: test_other_attributes
4994
+ ----------------------------------
4995
+ -------------------------------------------
4996
+ HandlerTest: test_our_handler_is_registered
4997
+ -------------------------------------------
4998
+ -------------------------------------------------------
4999
+ HandlerTest: test_real_document_has_doctype_and_newline
5000
+ -------------------------------------------------------
5001
+ ---------------------------------------------
5002
+ GaraTest: test_Gara.render_renders_a_template
5003
+ ---------------------------------------------
5004
+ ----------------------------------------------
5005
+ GaraTest: test_another_emitter_may_be_supplied
5006
+ ----------------------------------------------
5007
+ ----------------------------------
5008
+ GaraTest: test_performance_is_okay
5009
+ ----------------------------------
5010
+ -------------------------------
5011
+ GaraTest: test_we_have_a_module
5012
+ -------------------------------
5013
+ -----------------------------------------
5014
+ HelloControllerTest: test_should_get_show
5015
+ -----------------------------------------
5016
+ Processing by HelloController#show as HTML
5017
+ Rendered hello/show.html.gara within layouts/application (1388.5ms)
5018
+ Completed 500 Internal Server Error in 1395ms
5019
+ ---------------------------------------------
5020
+ GaraTest: test_Gara.render_renders_a_template
5021
+ ---------------------------------------------
5022
+ ----------------------------------------------
5023
+ GaraTest: test_another_emitter_may_be_supplied
5024
+ ----------------------------------------------
5025
+ ----------------------------------
5026
+ GaraTest: test_performance_is_okay
5027
+ ----------------------------------
5028
+ -------------------------------
5029
+ GaraTest: test_we_have_a_module
5030
+ -------------------------------
5031
+ -----------------------------------------
5032
+ HelloControllerTest: test_should_get_show
5033
+ -----------------------------------------
5034
+ Processing by HelloController#show as HTML
5035
+ Rendered hello/show.html.gara within layouts/application (3.9ms)
5036
+ Completed 500 Internal Server Error in 12ms
5037
+ -----------------------------
5038
+ HandlerTest: test_class_names
5039
+ -----------------------------
5040
+ ------------------------------------------------------------------
5041
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
5042
+ ------------------------------------------------------------------
5043
+ ---------------------------------------------------------------------------------------------
5044
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
5045
+ ---------------------------------------------------------------------------------------------
5046
+ ----------------------------------------------------------
5047
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5048
+ ----------------------------------------------------------
5049
+ -----------------------------
5050
+ HandlerTest: test_locals_work
5051
+ -----------------------------
5052
+ ------------------------------------------------------------
5053
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5054
+ ------------------------------------------------------------
5055
+ ----------------------------------
5056
+ HandlerTest: test_other_attributes
5057
+ ----------------------------------
5058
+ -------------------------------------------
5059
+ HandlerTest: test_our_handler_is_registered
5060
+ -------------------------------------------
5061
+ -------------------------------------------------------
5062
+ HandlerTest: test_real_document_has_doctype_and_newline
5063
+ -------------------------------------------------------
5064
+ -----------------------------
5065
+ HandlerTest: test_class_names
5066
+ -----------------------------
5067
+ ---------------------------------------------
5068
+ GaraTest: test_Gara.render_renders_a_template
5069
+ ---------------------------------------------
5070
+ -----------------------------------------
5071
+ HelloControllerTest: test_should_get_show
5072
+ -----------------------------------------
5073
+ Processing by HelloController#show as HTML
5074
+ Rendered hello/show.html.gara within layouts/application (3.6ms)
5075
+ Completed 500 Internal Server Error in 11ms
5076
+ -----------------------------
5077
+ HandlerTest: test_class_names
5078
+ -----------------------------
5079
+ ------------------------------------------------------------------
5080
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
5081
+ ------------------------------------------------------------------
5082
+ ---------------------------------------------------------------------------------------------
5083
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
5084
+ ---------------------------------------------------------------------------------------------
5085
+ ----------------------------------------------------------
5086
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5087
+ ----------------------------------------------------------
5088
+ -----------------------------
5089
+ HandlerTest: test_locals_work
5090
+ -----------------------------
5091
+ ------------------------------------------------------------
5092
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5093
+ ------------------------------------------------------------
5094
+ ----------------------------------
5095
+ HandlerTest: test_other_attributes
5096
+ ----------------------------------
5097
+ -------------------------------------------
5098
+ HandlerTest: test_our_handler_is_registered
5099
+ -------------------------------------------
5100
+ -------------------------------------------------------
5101
+ HandlerTest: test_real_document_has_doctype_and_newline
5102
+ -------------------------------------------------------
5103
+ ---------------------------------------------
5104
+ GaraTest: test_Gara.render_renders_a_template
5105
+ ---------------------------------------------
5106
+ ----------------------------------------------
5107
+ GaraTest: test_another_emitter_may_be_supplied
5108
+ ----------------------------------------------
5109
+ ----------------------------------
5110
+ GaraTest: test_performance_is_okay
5111
+ ----------------------------------
5112
+ -------------------------------
5113
+ GaraTest: test_we_have_a_module
5114
+ -------------------------------
5115
+ -----------------------------------------
5116
+ HelloControllerTest: test_should_get_show
5117
+ -----------------------------------------
5118
+ Processing by HelloController#show as HTML
5119
+ Rendered hello/show.html.gara within layouts/application (3.2ms)
5120
+ Completed 500 Internal Server Error in 8ms
5121
+ -----------------------------
5122
+ HandlerTest: test_class_names
5123
+ -----------------------------
5124
+ ------------------------------------------------------------------
5125
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
5126
+ ------------------------------------------------------------------
5127
+ ---------------------------------------------------------------------------------------------
5128
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
5129
+ ---------------------------------------------------------------------------------------------
5130
+ ----------------------------------------------------------
5131
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5132
+ ----------------------------------------------------------
5133
+ -----------------------------
5134
+ HandlerTest: test_locals_work
5135
+ -----------------------------
5136
+ ------------------------------------------------------------
5137
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5138
+ ------------------------------------------------------------
5139
+ ----------------------------------
5140
+ HandlerTest: test_other_attributes
5141
+ ----------------------------------
5142
+ -------------------------------------------
5143
+ HandlerTest: test_our_handler_is_registered
5144
+ -------------------------------------------
5145
+ -------------------------------------------------------
5146
+ HandlerTest: test_real_document_has_doctype_and_newline
5147
+ -------------------------------------------------------
5148
+ ---------------------------------------------
5149
+ GaraTest: test_Gara.render_renders_a_template
5150
+ ---------------------------------------------
5151
+ ----------------------------------------------
5152
+ GaraTest: test_another_emitter_may_be_supplied
5153
+ ----------------------------------------------
5154
+ ----------------------------------
5155
+ GaraTest: test_performance_is_okay
5156
+ ----------------------------------
5157
+ -------------------------------
5158
+ GaraTest: test_we_have_a_module
5159
+ -------------------------------
5160
+ ---------------------------------------------
5161
+ GaraTest: test_Gara.render_renders_a_template
5162
+ ---------------------------------------------
5163
+ ----------------------------------------------
5164
+ GaraTest: test_another_emitter_may_be_supplied
5165
+ ----------------------------------------------
5166
+ ----------------------------------
5167
+ GaraTest: test_performance_is_okay
5168
+ ----------------------------------
5169
+ -------------------------------
5170
+ GaraTest: test_we_have_a_module
5171
+ -------------------------------
5172
+ -----------------------------------------
5173
+ HelloControllerTest: test_should_get_show
5174
+ -----------------------------------------
5175
+ Processing by HelloController#show as HTML
5176
+ Rendered hello/show.html.gara within layouts/application (5634.5ms)
5177
+ Completed 500 Internal Server Error in 5640ms
5178
+ -----------------------------
5179
+ HandlerTest: test_class_names
5180
+ -----------------------------
5181
+ ------------------------------------------------------------------
5182
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
5183
+ ------------------------------------------------------------------
5184
+ ---------------------------------------------------------------------------------------------
5185
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
5186
+ ---------------------------------------------------------------------------------------------
5187
+ ----------------------------------------------------------
5188
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5189
+ ----------------------------------------------------------
5190
+ -----------------------------
5191
+ HandlerTest: test_locals_work
5192
+ -----------------------------
5193
+ ------------------------------------------------------------
5194
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5195
+ ------------------------------------------------------------
5196
+ ----------------------------------
5197
+ HandlerTest: test_other_attributes
5198
+ ----------------------------------
5199
+ -------------------------------------------
5200
+ HandlerTest: test_our_handler_is_registered
5201
+ -------------------------------------------
5202
+ -------------------------------------------------------
5203
+ HandlerTest: test_real_document_has_doctype_and_newline
5204
+ -------------------------------------------------------
5205
+ ----------------------------------------------------------
5206
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5207
+ ----------------------------------------------------------
5208
+ -------------------------------------------
5209
+ HandlerTest: test_our_handler_is_registered
5210
+ -------------------------------------------
5211
+ -----------------------------------------
5212
+ HelloControllerTest: test_should_get_show
5213
+ -----------------------------------------
5214
+ Processing by HelloController#show as HTML
5215
+ Rendered hello/show.html.gara within layouts/application (1341.4ms)
5216
+ Completed 500 Internal Server Error in 1347ms
5217
+ ---------------------------------------------
5218
+ GaraTest: test_Gara.render_renders_a_template
5219
+ ---------------------------------------------
5220
+ ----------------------------------------------
5221
+ GaraTest: test_another_emitter_may_be_supplied
5222
+ ----------------------------------------------
5223
+ ----------------------------------
5224
+ GaraTest: test_performance_is_okay
5225
+ ----------------------------------
5226
+ -------------------------------
5227
+ GaraTest: test_we_have_a_module
5228
+ -------------------------------
5229
+ -----------------------------------------
5230
+ HelloControllerTest: test_should_get_show
5231
+ -----------------------------------------
5232
+ Processing by HelloController#show as HTML
5233
+ Rendered hello/show.html.gara within layouts/application (3823.6ms)
5234
+ Completed 500 Internal Server Error in 3829ms
5235
+ ----------------------------------------------------------
5236
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5237
+ ----------------------------------------------------------
5238
+ -------------------------------------------
5239
+ HandlerTest: test_our_handler_is_registered
5240
+ -------------------------------------------
5241
+ ---------------------------------------------
5242
+ GaraTest: test_Gara.render_renders_a_template
5243
+ ---------------------------------------------
5244
+ ----------------------------------
5245
+ GaraTest: test_performance_is_okay
5246
+ ----------------------------------
5247
+ -------------------------------
5248
+ GaraTest: test_we_have_a_module
5249
+ -------------------------------
5250
+ ----------------------------------------------------------
5251
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5252
+ ----------------------------------------------------------
5253
+ -------------------------------------------
5254
+ HandlerTest: test_our_handler_is_registered
5255
+ -------------------------------------------
5256
+ ----------------------------------------------------------
5257
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5258
+ ----------------------------------------------------------
5259
+ -------------------------------------------
5260
+ HandlerTest: test_our_handler_is_registered
5261
+ -------------------------------------------
5262
+ ----------------------------------------------------------
5263
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5264
+ ----------------------------------------------------------
5265
+ -------------------------------------------
5266
+ HandlerTest: test_our_handler_is_registered
5267
+ -------------------------------------------
5268
+ ----------------------------------------------------------
5269
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5270
+ ----------------------------------------------------------
5271
+ -------------------------------------------
5272
+ HandlerTest: test_our_handler_is_registered
5273
+ -------------------------------------------
5274
+ ----------------------------------------------------------
5275
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5276
+ ----------------------------------------------------------
5277
+ -------------------------------------------
5278
+ HandlerTest: test_our_handler_is_registered
5279
+ -------------------------------------------
5280
+ ----------------------------------------------------------
5281
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5282
+ ----------------------------------------------------------
5283
+ -------------------------------------------
5284
+ HandlerTest: test_our_handler_is_registered
5285
+ -------------------------------------------
5286
+ ----------------------------------------------------------
5287
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5288
+ ----------------------------------------------------------
5289
+ -------------------------------------------
5290
+ HandlerTest: test_our_handler_is_registered
5291
+ -------------------------------------------
5292
+ ----------------------------------------------------------
5293
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5294
+ ----------------------------------------------------------
5295
+ -------------------------------------------
5296
+ HandlerTest: test_our_handler_is_registered
5297
+ -------------------------------------------
5298
+ ----------------------------------------------------------
5299
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5300
+ ----------------------------------------------------------
5301
+ -------------------------------------------
5302
+ HandlerTest: test_our_handler_is_registered
5303
+ -------------------------------------------
5304
+ ----------------------------------------------------------
5305
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5306
+ ----------------------------------------------------------
5307
+ -------------------------------------------
5308
+ HandlerTest: test_our_handler_is_registered
5309
+ -------------------------------------------
5310
+ ----------------------------------------------------------
5311
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5312
+ ----------------------------------------------------------
5313
+ -------------------------------------------
5314
+ HandlerTest: test_our_handler_is_registered
5315
+ -------------------------------------------
5316
+ ----------------------------------------------------------
5317
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5318
+ ----------------------------------------------------------
5319
+ -------------------------------------------
5320
+ HandlerTest: test_our_handler_is_registered
5321
+ -------------------------------------------
5322
+ ----------------------------------------------------------
5323
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5324
+ ----------------------------------------------------------
5325
+ -------------------------------------------
5326
+ HandlerTest: test_our_handler_is_registered
5327
+ -------------------------------------------
5328
+ ----------------------------------------------------------
5329
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5330
+ ----------------------------------------------------------
5331
+ -------------------------------------------
5332
+ HandlerTest: test_our_handler_is_registered
5333
+ -------------------------------------------
5334
+ ----------------------------------------------------------
5335
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5336
+ ----------------------------------------------------------
5337
+ -------------------------------------------
5338
+ HandlerTest: test_our_handler_is_registered
5339
+ -------------------------------------------
5340
+ ----------------------------------------------------------
5341
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5342
+ ----------------------------------------------------------
5343
+ -------------------------------------------
5344
+ HandlerTest: test_our_handler_is_registered
5345
+ -------------------------------------------
5346
+ ----------------------------------------------------------
5347
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5348
+ ----------------------------------------------------------
5349
+ -------------------------------------------
5350
+ HandlerTest: test_our_handler_is_registered
5351
+ -------------------------------------------
5352
+ ----------------------------------------------------------
5353
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5354
+ ----------------------------------------------------------
5355
+ -------------------------------------------
5356
+ HandlerTest: test_our_handler_is_registered
5357
+ -------------------------------------------
5358
+ ----------------------------------------------------------
5359
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5360
+ ----------------------------------------------------------
5361
+ -------------------------------------------
5362
+ HandlerTest: test_our_handler_is_registered
5363
+ -------------------------------------------
5364
+ ----------------------------------------------------------
5365
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5366
+ ----------------------------------------------------------
5367
+ -------------------------------------------
5368
+ HandlerTest: test_our_handler_is_registered
5369
+ -------------------------------------------
5370
+ ----------------------------------------------------------
5371
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5372
+ ----------------------------------------------------------
5373
+ -------------------------------------------
5374
+ HandlerTest: test_our_handler_is_registered
5375
+ -------------------------------------------
5376
+ ----------------------------------------------------------
5377
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5378
+ ----------------------------------------------------------
5379
+ -------------------------------------------
5380
+ HandlerTest: test_our_handler_is_registered
5381
+ -------------------------------------------
5382
+ ----------------------------------------------------------
5383
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5384
+ ----------------------------------------------------------
5385
+ ------------------------------------------------------------
5386
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5387
+ ------------------------------------------------------------
5388
+ -------------------------------------------
5389
+ HandlerTest: test_our_handler_is_registered
5390
+ -------------------------------------------
5391
+ ----------------------------------------------------------
5392
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5393
+ ----------------------------------------------------------
5394
+ ------------------------------------------------------------
5395
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5396
+ ------------------------------------------------------------
5397
+ -------------------------------------------
5398
+ HandlerTest: test_our_handler_is_registered
5399
+ -------------------------------------------
5400
+ ----------------------------------------------------------
5401
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5402
+ ----------------------------------------------------------
5403
+ ------------------------------------------------------------
5404
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5405
+ ------------------------------------------------------------
5406
+ -------------------------------------------
5407
+ HandlerTest: test_our_handler_is_registered
5408
+ -------------------------------------------
5409
+ ----------------------------------------------------------
5410
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5411
+ ----------------------------------------------------------
5412
+ ------------------------------------------------------------
5413
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5414
+ ------------------------------------------------------------
5415
+ -------------------------------------------
5416
+ HandlerTest: test_our_handler_is_registered
5417
+ -------------------------------------------
5418
+ ----------------------------------------------------------
5419
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5420
+ ----------------------------------------------------------
5421
+ ------------------------------------------------------------
5422
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5423
+ ------------------------------------------------------------
5424
+ -------------------------------------------
5425
+ HandlerTest: test_our_handler_is_registered
5426
+ -------------------------------------------
5427
+ ----------------------------------------------------------
5428
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5429
+ ----------------------------------------------------------
5430
+ ------------------------------------------------------------
5431
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5432
+ ------------------------------------------------------------
5433
+ -------------------------------------------
5434
+ HandlerTest: test_our_handler_is_registered
5435
+ -------------------------------------------
5436
+ -----------------------------
5437
+ HandlerTest: test_class_names
5438
+ -----------------------------
5439
+ ------------------------------------------------------------------
5440
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
5441
+ ------------------------------------------------------------------
5442
+ ---------------------------------------------------------------------------------------------
5443
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
5444
+ ---------------------------------------------------------------------------------------------
5445
+ ----------------------------------------------------------
5446
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5447
+ ----------------------------------------------------------
5448
+ -----------------------------
5449
+ HandlerTest: test_locals_work
5450
+ -----------------------------
5451
+ ------------------------------------------------------------
5452
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5453
+ ------------------------------------------------------------
5454
+ ----------------------------------
5455
+ HandlerTest: test_other_attributes
5456
+ ----------------------------------
5457
+ -------------------------------------------
5458
+ HandlerTest: test_our_handler_is_registered
5459
+ -------------------------------------------
5460
+ -------------------------------------------------------
5461
+ HandlerTest: test_real_document_has_doctype_and_newline
5462
+ -------------------------------------------------------
5463
+ -----------------------------
5464
+ HandlerTest: test_class_names
5465
+ -----------------------------
5466
+ ----------------------------------------------------------
5467
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5468
+ ----------------------------------------------------------
5469
+ -----------------------------
5470
+ HandlerTest: test_locals_work
5471
+ -----------------------------
5472
+ ------------------------------------------------------------
5473
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5474
+ ------------------------------------------------------------
5475
+ ----------------------------------
5476
+ HandlerTest: test_other_attributes
5477
+ ----------------------------------
5478
+ -------------------------------------------
5479
+ HandlerTest: test_our_handler_is_registered
5480
+ -------------------------------------------
5481
+ -------------------------------------------------------
5482
+ HandlerTest: test_real_document_has_doctype_and_newline
5483
+ -------------------------------------------------------
5484
+ -----------------------------
5485
+ HandlerTest: test_class_names
5486
+ -----------------------------
5487
+ ----------------------------------------------------------
5488
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5489
+ ----------------------------------------------------------
5490
+ -----------------------------
5491
+ HandlerTest: test_locals_work
5492
+ -----------------------------
5493
+ ------------------------------------------------------------
5494
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5495
+ ------------------------------------------------------------
5496
+ ----------------------------------
5497
+ HandlerTest: test_other_attributes
5498
+ ----------------------------------
5499
+ -------------------------------------------
5500
+ HandlerTest: test_our_handler_is_registered
5501
+ -------------------------------------------
5502
+ -------------------------------------------------------
5503
+ HandlerTest: test_real_document_has_doctype_and_newline
5504
+ -------------------------------------------------------
5505
+ -----------------------------
5506
+ HandlerTest: test_class_names
5507
+ -----------------------------
5508
+ ----------------------------------------------------------
5509
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5510
+ ----------------------------------------------------------
5511
+ -----------------------------
5512
+ HandlerTest: test_locals_work
5513
+ -----------------------------
5514
+ ------------------------------------------------------------
5515
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5516
+ ------------------------------------------------------------
5517
+ ----------------------------------
5518
+ HandlerTest: test_other_attributes
5519
+ ----------------------------------
5520
+ -------------------------------------------
5521
+ HandlerTest: test_our_handler_is_registered
5522
+ -------------------------------------------
5523
+ -------------------------------------------------------
5524
+ HandlerTest: test_real_document_has_doctype_and_newline
5525
+ -------------------------------------------------------
5526
+ -----------------------------
5527
+ HandlerTest: test_class_names
5528
+ -----------------------------
5529
+ ----------------------------------------------------------
5530
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5531
+ ----------------------------------------------------------
5532
+ -----------------------------
5533
+ HandlerTest: test_locals_work
5534
+ -----------------------------
5535
+ ------------------------------------------------------------
5536
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5537
+ ------------------------------------------------------------
5538
+ ----------------------------------
5539
+ HandlerTest: test_other_attributes
5540
+ ----------------------------------
5541
+ -------------------------------------------
5542
+ HandlerTest: test_our_handler_is_registered
5543
+ -------------------------------------------
5544
+ -------------------------------------------------------
5545
+ HandlerTest: test_real_document_has_doctype_and_newline
5546
+ -------------------------------------------------------
5547
+ -----------------------------
5548
+ HandlerTest: test_class_names
5549
+ -----------------------------
5550
+ ----------------------------------------------------------
5551
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5552
+ ----------------------------------------------------------
5553
+ -----------------------------
5554
+ HandlerTest: test_locals_work
5555
+ -----------------------------
5556
+ ------------------------------------------------------------
5557
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5558
+ ------------------------------------------------------------
5559
+ ----------------------------------
5560
+ HandlerTest: test_other_attributes
5561
+ ----------------------------------
5562
+ -------------------------------------------
5563
+ HandlerTest: test_our_handler_is_registered
5564
+ -------------------------------------------
5565
+ -------------------------------------------------------
5566
+ HandlerTest: test_real_document_has_doctype_and_newline
5567
+ -------------------------------------------------------
5568
+ -----------------------------
5569
+ HandlerTest: test_class_names
5570
+ -----------------------------
5571
+ ----------------------------------------------------------
5572
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5573
+ ----------------------------------------------------------
5574
+ -----------------------------
5575
+ HandlerTest: test_locals_work
5576
+ -----------------------------
5577
+ ------------------------------------------------------------
5578
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5579
+ ------------------------------------------------------------
5580
+ ----------------------------------
5581
+ HandlerTest: test_other_attributes
5582
+ ----------------------------------
5583
+ -------------------------------------------
5584
+ HandlerTest: test_our_handler_is_registered
5585
+ -------------------------------------------
5586
+ -------------------------------------------------------
5587
+ HandlerTest: test_real_document_has_doctype_and_newline
5588
+ -------------------------------------------------------
5589
+ -----------------------------
5590
+ HandlerTest: test_class_names
5591
+ -----------------------------
5592
+ ----------------------------------------------------------
5593
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5594
+ ----------------------------------------------------------
5595
+ -----------------------------
5596
+ HandlerTest: test_locals_work
5597
+ -----------------------------
5598
+ ------------------------------------------------------------
5599
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5600
+ ------------------------------------------------------------
5601
+ ----------------------------------
5602
+ HandlerTest: test_other_attributes
5603
+ ----------------------------------
5604
+ -------------------------------------------
5605
+ HandlerTest: test_our_handler_is_registered
5606
+ -------------------------------------------
5607
+ -------------------------------------------------------
5608
+ HandlerTest: test_real_document_has_doctype_and_newline
5609
+ -------------------------------------------------------
5610
+ -----------------------------
5611
+ HandlerTest: test_class_names
5612
+ -----------------------------
5613
+ -----------------------------
5614
+ HandlerTest: test_class_names
5615
+ -----------------------------
5616
+ -----------------------------
5617
+ HandlerTest: test_class_names
5618
+ -----------------------------
5619
+ -----------------------------
5620
+ HandlerTest: test_class_names
5621
+ -----------------------------
5622
+ -----------------------------
5623
+ HandlerTest: test_class_names
5624
+ -----------------------------
5625
+ -----------------------------
5626
+ HandlerTest: test_class_names
5627
+ -----------------------------
5628
+ -----------------------------
5629
+ HandlerTest: test_class_names
5630
+ -----------------------------
5631
+ ------------------------------------------------------------------
5632
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
5633
+ ------------------------------------------------------------------
5634
+ ---------------------------------------------------------------------------------------------
5635
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
5636
+ ---------------------------------------------------------------------------------------------
5637
+ ----------------------------------------------------------
5638
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5639
+ ----------------------------------------------------------
5640
+ -----------------------------
5641
+ HandlerTest: test_locals_work
5642
+ -----------------------------
5643
+ ------------------------------------------------------------
5644
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5645
+ ------------------------------------------------------------
5646
+ ----------------------------------
5647
+ HandlerTest: test_other_attributes
5648
+ ----------------------------------
5649
+ -------------------------------------------
5650
+ HandlerTest: test_our_handler_is_registered
5651
+ -------------------------------------------
5652
+ -------------------------------------------------------
5653
+ HandlerTest: test_real_document_has_doctype_and_newline
5654
+ -------------------------------------------------------
5655
+ ----------------------------------------------------------
5656
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5657
+ ----------------------------------------------------------
5658
+ ------------------------------------------------------------
5659
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5660
+ ------------------------------------------------------------
5661
+ -------------------------------------------
5662
+ HandlerTest: test_our_handler_is_registered
5663
+ -------------------------------------------
5664
+ ----------------------------------------------------------
5665
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5666
+ ----------------------------------------------------------
5667
+ ------------------------------------------------------------
5668
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5669
+ ------------------------------------------------------------
5670
+ -------------------------------------------
5671
+ HandlerTest: test_our_handler_is_registered
5672
+ -------------------------------------------
5673
+ -----------------------------
5674
+ HandlerTest: test_class_names
5675
+ -----------------------------
5676
+ ------------------------------------------------------------------
5677
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
5678
+ ------------------------------------------------------------------
5679
+ ---------------------------------------------------------------------------------------------
5680
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
5681
+ ---------------------------------------------------------------------------------------------
5682
+ ----------------------------------------------------------
5683
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5684
+ ----------------------------------------------------------
5685
+ -----------------------------
5686
+ HandlerTest: test_locals_work
5687
+ -----------------------------
5688
+ ------------------------------------------------------------
5689
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5690
+ ------------------------------------------------------------
5691
+ ----------------------------------
5692
+ HandlerTest: test_other_attributes
5693
+ ----------------------------------
5694
+ -------------------------------------------
5695
+ HandlerTest: test_our_handler_is_registered
5696
+ -------------------------------------------
5697
+ -------------------------------------------------------
5698
+ HandlerTest: test_real_document_has_doctype_and_newline
5699
+ -------------------------------------------------------
5700
+ -----------------------------
5701
+ HandlerTest: test_class_names
5702
+ -----------------------------
5703
+ ----------------------------------------------------------
5704
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5705
+ ----------------------------------------------------------
5706
+ -----------------------------
5707
+ HandlerTest: test_locals_work
5708
+ -----------------------------
5709
+ ------------------------------------------------------------
5710
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5711
+ ------------------------------------------------------------
5712
+ ----------------------------------
5713
+ HandlerTest: test_other_attributes
5714
+ ----------------------------------
5715
+ -------------------------------------------
5716
+ HandlerTest: test_our_handler_is_registered
5717
+ -------------------------------------------
5718
+ -------------------------------------------------------
5719
+ HandlerTest: test_real_document_has_doctype_and_newline
5720
+ -------------------------------------------------------
5721
+ -----------------------------
5722
+ HandlerTest: test_class_names
5723
+ -----------------------------
5724
+ ------------------------------------------------------------------
5725
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
5726
+ ------------------------------------------------------------------
5727
+ ----------------------------------------------------------
5728
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5729
+ ----------------------------------------------------------
5730
+ -----------------------------
5731
+ HandlerTest: test_locals_work
5732
+ -----------------------------
5733
+ ------------------------------------------------------------
5734
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5735
+ ------------------------------------------------------------
5736
+ ----------------------------------
5737
+ HandlerTest: test_other_attributes
5738
+ ----------------------------------
5739
+ -------------------------------------------
5740
+ HandlerTest: test_our_handler_is_registered
5741
+ -------------------------------------------
5742
+ -------------------------------------------------------
5743
+ HandlerTest: test_real_document_has_doctype_and_newline
5744
+ -------------------------------------------------------
5745
+ -----------------------------
5746
+ HandlerTest: test_class_names
5747
+ -----------------------------
5748
+ ------------------------------------------------------------------
5749
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
5750
+ ------------------------------------------------------------------
5751
+ ----------------------------------------------------------
5752
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5753
+ ----------------------------------------------------------
5754
+ -----------------------------
5755
+ HandlerTest: test_locals_work
5756
+ -----------------------------
5757
+ ------------------------------------------------------------
5758
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5759
+ ------------------------------------------------------------
5760
+ ----------------------------------
5761
+ HandlerTest: test_other_attributes
5762
+ ----------------------------------
5763
+ -------------------------------------------
5764
+ HandlerTest: test_our_handler_is_registered
5765
+ -------------------------------------------
5766
+ -------------------------------------------------------
5767
+ HandlerTest: test_real_document_has_doctype_and_newline
5768
+ -------------------------------------------------------
5769
+ -----------------------------
5770
+ HandlerTest: test_class_names
5771
+ -----------------------------
5772
+ ---------------------------------------------------------
5773
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5774
+ ---------------------------------------------------------
5775
+ ----------------------------------------------------------
5776
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5777
+ ----------------------------------------------------------
5778
+ -----------------------------
5779
+ HandlerTest: test_locals_work
5780
+ -----------------------------
5781
+ ------------------------------------------------------------
5782
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5783
+ ------------------------------------------------------------
5784
+ ----------------------------------
5785
+ HandlerTest: test_other_attributes
5786
+ ----------------------------------
5787
+ -------------------------------------------
5788
+ HandlerTest: test_our_handler_is_registered
5789
+ -------------------------------------------
5790
+ -------------------------------------------------------
5791
+ HandlerTest: test_real_document_has_doctype_and_newline
5792
+ -------------------------------------------------------
5793
+ -----------------------------
5794
+ HandlerTest: test_class_names
5795
+ -----------------------------
5796
+ ---------------------------------------------------------
5797
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5798
+ ---------------------------------------------------------
5799
+ ----------------------------------------------------------
5800
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5801
+ ----------------------------------------------------------
5802
+ -----------------------------
5803
+ HandlerTest: test_locals_work
5804
+ -----------------------------
5805
+ ------------------------------------------------------------
5806
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5807
+ ------------------------------------------------------------
5808
+ ----------------------------------
5809
+ HandlerTest: test_other_attributes
5810
+ ----------------------------------
5811
+ -------------------------------------------
5812
+ HandlerTest: test_our_handler_is_registered
5813
+ -------------------------------------------
5814
+ -------------------------------------------------------
5815
+ HandlerTest: test_real_document_has_doctype_and_newline
5816
+ -------------------------------------------------------
5817
+ ---------------------------------------------------------
5818
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5819
+ ---------------------------------------------------------
5820
+ ---------------------------------------------------------
5821
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5822
+ ---------------------------------------------------------
5823
+ ---------------------------------------------------------
5824
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5825
+ ---------------------------------------------------------
5826
+ ---------------------------------------------------------
5827
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5828
+ ---------------------------------------------------------
5829
+ ---------------------------------------------------------
5830
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5831
+ ---------------------------------------------------------
5832
+ ---------------------------------------------------------
5833
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5834
+ ---------------------------------------------------------
5835
+ ---------------------------------------------------------
5836
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5837
+ ---------------------------------------------------------
5838
+ ---------------------------------------------------------
5839
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5840
+ ---------------------------------------------------------
5841
+ ---------------------------------------------------------
5842
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5843
+ ---------------------------------------------------------
5844
+ ---------------------------------------------------------
5845
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5846
+ ---------------------------------------------------------
5847
+ ---------------------------------------------------------
5848
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5849
+ ---------------------------------------------------------
5850
+ ---------------------------------------------------------
5851
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5852
+ ---------------------------------------------------------
5853
+ ---------------------------------------------------------
5854
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5855
+ ---------------------------------------------------------
5856
+ ---------------------------------------------------------
5857
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5858
+ ---------------------------------------------------------
5859
+ ---------------------------------------------------------
5860
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5861
+ ---------------------------------------------------------
5862
+ ---------------------------------------------------------
5863
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5864
+ ---------------------------------------------------------
5865
+ ---------------------------------------------------------
5866
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5867
+ ---------------------------------------------------------
5868
+ ---------------------------------------------------------
5869
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5870
+ ---------------------------------------------------------
5871
+ ---------------------------------------------------------
5872
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5873
+ ---------------------------------------------------------
5874
+ ---------------------------------------------------------
5875
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5876
+ ---------------------------------------------------------
5877
+ ---------------------------------------------------------
5878
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5879
+ ---------------------------------------------------------
5880
+ ---------------------------------------------------------
5881
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5882
+ ---------------------------------------------------------
5883
+ ---------------------------------------------------------
5884
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5885
+ ---------------------------------------------------------
5886
+ ---------------------------------------------------------
5887
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5888
+ ---------------------------------------------------------
5889
+ -----------------------------
5890
+ HandlerTest: test_class_names
5891
+ -----------------------------
5892
+ ---------------------------------------------------------
5893
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5894
+ ---------------------------------------------------------
5895
+ ------------------------------------------------------------------
5896
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
5897
+ ------------------------------------------------------------------
5898
+ ---------------------------------------------------------------------------------------------
5899
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
5900
+ ---------------------------------------------------------------------------------------------
5901
+ ----------------------------------------------------------
5902
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5903
+ ----------------------------------------------------------
5904
+ -----------------------------
5905
+ HandlerTest: test_locals_work
5906
+ -----------------------------
5907
+ ------------------------------------------------------------
5908
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5909
+ ------------------------------------------------------------
5910
+ ----------------------------------
5911
+ HandlerTest: test_other_attributes
5912
+ ----------------------------------
5913
+ -------------------------------------------
5914
+ HandlerTest: test_our_handler_is_registered
5915
+ -------------------------------------------
5916
+ -------------------------------------------------------
5917
+ HandlerTest: test_real_document_has_doctype_and_newline
5918
+ -------------------------------------------------------
5919
+ -----------------------------
5920
+ HandlerTest: test_class_names
5921
+ -----------------------------
5922
+ ---------------------------------------------------------
5923
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5924
+ ---------------------------------------------------------
5925
+ ------------------------------------------------------------------
5926
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
5927
+ ------------------------------------------------------------------
5928
+ ---------------------------------------------------------------------------------------------
5929
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
5930
+ ---------------------------------------------------------------------------------------------
5931
+ ----------------------------------------------------------
5932
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5933
+ ----------------------------------------------------------
5934
+ -----------------------------
5935
+ HandlerTest: test_locals_work
5936
+ -----------------------------
5937
+ ------------------------------------------------------------
5938
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5939
+ ------------------------------------------------------------
5940
+ ----------------------------------
5941
+ HandlerTest: test_other_attributes
5942
+ ----------------------------------
5943
+ -------------------------------------------
5944
+ HandlerTest: test_our_handler_is_registered
5945
+ -------------------------------------------
5946
+ -------------------------------------------------------
5947
+ HandlerTest: test_real_document_has_doctype_and_newline
5948
+ -------------------------------------------------------
5949
+ -----------------------------
5950
+ HandlerTest: test_class_names
5951
+ -----------------------------
5952
+ ---------------------------------------------------------
5953
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5954
+ ---------------------------------------------------------
5955
+ ------------------------------------------------------------------
5956
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
5957
+ ------------------------------------------------------------------
5958
+ ---------------------------------------------------------------------------------------------
5959
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
5960
+ ---------------------------------------------------------------------------------------------
5961
+ ----------------------------------------------------------
5962
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5963
+ ----------------------------------------------------------
5964
+ -----------------------------
5965
+ HandlerTest: test_locals_work
5966
+ -----------------------------
5967
+ ------------------------------------------------------------
5968
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5969
+ ------------------------------------------------------------
5970
+ ----------------------------------
5971
+ HandlerTest: test_other_attributes
5972
+ ----------------------------------
5973
+ -------------------------------------------
5974
+ HandlerTest: test_our_handler_is_registered
5975
+ -------------------------------------------
5976
+ -------------------------------------------------------
5977
+ HandlerTest: test_real_document_has_doctype_and_newline
5978
+ -------------------------------------------------------
5979
+ -----------------------------
5980
+ HandlerTest: test_class_names
5981
+ -----------------------------
5982
+ ---------------------------------------------------------
5983
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
5984
+ ---------------------------------------------------------
5985
+ ------------------------------------------------------------------
5986
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
5987
+ ------------------------------------------------------------------
5988
+ ---------------------------------------------------------------------------------------------
5989
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
5990
+ ---------------------------------------------------------------------------------------------
5991
+ ----------------------------------------------------------
5992
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
5993
+ ----------------------------------------------------------
5994
+ -----------------------------
5995
+ HandlerTest: test_locals_work
5996
+ -----------------------------
5997
+ ------------------------------------------------------------
5998
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
5999
+ ------------------------------------------------------------
6000
+ ----------------------------------
6001
+ HandlerTest: test_other_attributes
6002
+ ----------------------------------
6003
+ -------------------------------------------
6004
+ HandlerTest: test_our_handler_is_registered
6005
+ -------------------------------------------
6006
+ -------------------------------------------------------
6007
+ HandlerTest: test_real_document_has_doctype_and_newline
6008
+ -------------------------------------------------------
6009
+ -----------------------------
6010
+ HandlerTest: test_class_names
6011
+ -----------------------------
6012
+ ---------------------------------------------------------
6013
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6014
+ ---------------------------------------------------------
6015
+ ------------------------------------------------------------------
6016
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6017
+ ------------------------------------------------------------------
6018
+ ---------------------------------------------------------------------------------------------
6019
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6020
+ ---------------------------------------------------------------------------------------------
6021
+ ----------------------------------------------------------
6022
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6023
+ ----------------------------------------------------------
6024
+ -----------------------------
6025
+ HandlerTest: test_locals_work
6026
+ -----------------------------
6027
+ ------------------------------------------------------------
6028
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6029
+ ------------------------------------------------------------
6030
+ ----------------------------------
6031
+ HandlerTest: test_other_attributes
6032
+ ----------------------------------
6033
+ -------------------------------------------
6034
+ HandlerTest: test_our_handler_is_registered
6035
+ -------------------------------------------
6036
+ -------------------------------------------------------
6037
+ HandlerTest: test_real_document_has_doctype_and_newline
6038
+ -------------------------------------------------------
6039
+ ---------------------------------------------------------
6040
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6041
+ ---------------------------------------------------------
6042
+ ---------------------------------------------------------
6043
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6044
+ ---------------------------------------------------------
6045
+ ---------------------------------------------------------
6046
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6047
+ ---------------------------------------------------------
6048
+ ---------------------------------------------------------
6049
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6050
+ ---------------------------------------------------------
6051
+ -----------------------------
6052
+ HandlerTest: test_class_names
6053
+ -----------------------------
6054
+ ---------------------------------------------------------
6055
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6056
+ ---------------------------------------------------------
6057
+ ------------------------------------------------------------------
6058
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6059
+ ------------------------------------------------------------------
6060
+ ---------------------------------------------------------------------------------------------
6061
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6062
+ ---------------------------------------------------------------------------------------------
6063
+ ----------------------------------------------------------
6064
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6065
+ ----------------------------------------------------------
6066
+ -----------------------------
6067
+ HandlerTest: test_locals_work
6068
+ -----------------------------
6069
+ ------------------------------------------------------------
6070
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6071
+ ------------------------------------------------------------
6072
+ ----------------------------------
6073
+ HandlerTest: test_other_attributes
6074
+ ----------------------------------
6075
+ -------------------------------------------
6076
+ HandlerTest: test_our_handler_is_registered
6077
+ -------------------------------------------
6078
+ -------------------------------------------------------
6079
+ HandlerTest: test_real_document_has_doctype_and_newline
6080
+ -------------------------------------------------------
6081
+ -----------------------------
6082
+ HandlerTest: test_class_names
6083
+ -----------------------------
6084
+ ---------------------------------------------------------
6085
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6086
+ ---------------------------------------------------------
6087
+ ------------------------------------------------------------------
6088
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6089
+ ------------------------------------------------------------------
6090
+ ---------------------------------------------------------------------------------------------
6091
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6092
+ ---------------------------------------------------------------------------------------------
6093
+ ----------------------------------------------------------
6094
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6095
+ ----------------------------------------------------------
6096
+ -----------------------------
6097
+ HandlerTest: test_locals_work
6098
+ -----------------------------
6099
+ ------------------------------------------------------------
6100
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6101
+ ------------------------------------------------------------
6102
+ ----------------------------------
6103
+ HandlerTest: test_other_attributes
6104
+ ----------------------------------
6105
+ -------------------------------------------
6106
+ HandlerTest: test_our_handler_is_registered
6107
+ -------------------------------------------
6108
+ -------------------------------------------------------
6109
+ HandlerTest: test_real_document_has_doctype_and_newline
6110
+ -------------------------------------------------------
6111
+ -----------------------------
6112
+ HandlerTest: test_class_names
6113
+ -----------------------------
6114
+ ---------------------------------------------------------
6115
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6116
+ ---------------------------------------------------------
6117
+ ------------------------------------------------------------------
6118
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6119
+ ------------------------------------------------------------------
6120
+ ---------------------------------------------------------------------------------------------
6121
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6122
+ ---------------------------------------------------------------------------------------------
6123
+ ----------------------------------------------------------
6124
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6125
+ ----------------------------------------------------------
6126
+ -----------------------------
6127
+ HandlerTest: test_locals_work
6128
+ -----------------------------
6129
+ ------------------------------------------------------------
6130
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6131
+ ------------------------------------------------------------
6132
+ ----------------------------------
6133
+ HandlerTest: test_other_attributes
6134
+ ----------------------------------
6135
+ -------------------------------------------
6136
+ HandlerTest: test_our_handler_is_registered
6137
+ -------------------------------------------
6138
+ -------------------------------------------------------
6139
+ HandlerTest: test_real_document_has_doctype_and_newline
6140
+ -------------------------------------------------------
6141
+ -----------------------------
6142
+ HandlerTest: test_class_names
6143
+ -----------------------------
6144
+ ---------------------------------------------------------
6145
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6146
+ ---------------------------------------------------------
6147
+ ------------------------------------------------------------------
6148
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6149
+ ------------------------------------------------------------------
6150
+ ---------------------------------------------------------------------------------------------
6151
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6152
+ ---------------------------------------------------------------------------------------------
6153
+ ----------------------------------------------------------
6154
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6155
+ ----------------------------------------------------------
6156
+ -----------------------------
6157
+ HandlerTest: test_locals_work
6158
+ -----------------------------
6159
+ ------------------------------------------------------------
6160
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6161
+ ------------------------------------------------------------
6162
+ ----------------------------------
6163
+ HandlerTest: test_other_attributes
6164
+ ----------------------------------
6165
+ -------------------------------------------
6166
+ HandlerTest: test_our_handler_is_registered
6167
+ -------------------------------------------
6168
+ -------------------------------------------------------
6169
+ HandlerTest: test_real_document_has_doctype_and_newline
6170
+ -------------------------------------------------------
6171
+ -----------------------------
6172
+ HandlerTest: test_class_names
6173
+ -----------------------------
6174
+ ---------------------------------------------------------
6175
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6176
+ ---------------------------------------------------------
6177
+ ------------------------------------------------------------------
6178
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6179
+ ------------------------------------------------------------------
6180
+ ----------------------------------------------------------
6181
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6182
+ ----------------------------------------------------------
6183
+ -----------------------------
6184
+ HandlerTest: test_locals_work
6185
+ -----------------------------
6186
+ ------------------------------------------------------------
6187
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6188
+ ------------------------------------------------------------
6189
+ ----------------------------------
6190
+ HandlerTest: test_other_attributes
6191
+ ----------------------------------
6192
+ -------------------------------------------
6193
+ HandlerTest: test_our_handler_is_registered
6194
+ -------------------------------------------
6195
+ -------------------------------------------------------
6196
+ HandlerTest: test_real_document_has_doctype_and_newline
6197
+ -------------------------------------------------------
6198
+ ---------------------------------------------
6199
+ GaraTest: test_Gara.render_renders_a_template
6200
+ ---------------------------------------------
6201
+ ----------------------------------
6202
+ GaraTest: test_performance_is_okay
6203
+ ----------------------------------
6204
+ -------------------------------
6205
+ GaraTest: test_we_have_a_module
6206
+ -------------------------------
6207
+ -----------------------------
6208
+ HandlerTest: test_class_names
6209
+ -----------------------------
6210
+ ---------------------------------------------------------
6211
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6212
+ ---------------------------------------------------------
6213
+ ------------------------------------------------------------------
6214
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6215
+ ------------------------------------------------------------------
6216
+ ----------------------------------------------------------
6217
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6218
+ ----------------------------------------------------------
6219
+ -----------------------------
6220
+ HandlerTest: test_locals_work
6221
+ -----------------------------
6222
+ ------------------------------------------------------------
6223
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6224
+ ------------------------------------------------------------
6225
+ ----------------------------------
6226
+ HandlerTest: test_other_attributes
6227
+ ----------------------------------
6228
+ -------------------------------------------
6229
+ HandlerTest: test_our_handler_is_registered
6230
+ -------------------------------------------
6231
+ -------------------------------------------------------
6232
+ HandlerTest: test_real_document_has_doctype_and_newline
6233
+ -------------------------------------------------------
6234
+ -----------------------------------------
6235
+ HelloControllerTest: test_should_get_show
6236
+ -----------------------------------------
6237
+ Processing by HelloController#show as HTML
6238
+ Rendered hello/show.html.gara within layouts/application (1.8ms)
6239
+ Completed 200 OK in 36ms (Views: 36.1ms)
6240
+ ---------------------------------------------------------
6241
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6242
+ ---------------------------------------------------------
6243
+ ---------------------------------------------------------
6244
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6245
+ ---------------------------------------------------------
6246
+ ---------------------------------------------------------
6247
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6248
+ ---------------------------------------------------------
6249
+ ---------------------------------------------------------
6250
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6251
+ ---------------------------------------------------------
6252
+ ---------------------------------------------------------
6253
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6254
+ ---------------------------------------------------------
6255
+ ---------------------------------------------------------
6256
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6257
+ ---------------------------------------------------------
6258
+ ---------------------------------------------------------
6259
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6260
+ ---------------------------------------------------------
6261
+ ---------------------------------------------------------
6262
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6263
+ ---------------------------------------------------------
6264
+ ---------------------------------------------------------
6265
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6266
+ ---------------------------------------------------------
6267
+ ---------------------------------------------------------
6268
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6269
+ ---------------------------------------------------------
6270
+ ---------------------------------------------------------
6271
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6272
+ ---------------------------------------------------------
6273
+ ---------------------------------------------------------
6274
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6275
+ ---------------------------------------------------------
6276
+ ---------------------------------------------------------
6277
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6278
+ ---------------------------------------------------------
6279
+ ---------------------------------------------------------
6280
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6281
+ ---------------------------------------------------------
6282
+ ---------------------------------------------------------
6283
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6284
+ ---------------------------------------------------------
6285
+ ---------------------------------------------------------
6286
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6287
+ ---------------------------------------------------------
6288
+ ---------------------------------------------------------
6289
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6290
+ ---------------------------------------------------------
6291
+ ---------------------------------------------------------
6292
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6293
+ ---------------------------------------------------------
6294
+ ---------------------------------------------------------
6295
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6296
+ ---------------------------------------------------------
6297
+ ---------------------------------------------------------
6298
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6299
+ ---------------------------------------------------------
6300
+ -----------------------------
6301
+ HandlerTest: test_class_names
6302
+ -----------------------------
6303
+ ---------------------------------------------------------
6304
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6305
+ ---------------------------------------------------------
6306
+ ------------------------------------------------------------------
6307
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6308
+ ------------------------------------------------------------------
6309
+ -----------------------------
6310
+ HandlerTest: test_class_names
6311
+ -----------------------------
6312
+ ---------------------------------------------------------
6313
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6314
+ ---------------------------------------------------------
6315
+ ------------------------------------------------------------------
6316
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6317
+ ------------------------------------------------------------------
6318
+ -----------------------------------------
6319
+ HelloControllerTest: test_should_get_show
6320
+ -----------------------------------------
6321
+ Processing by HelloController#show as HTML
6322
+ Rendered hello/show.html.gara within layouts/application (4.6ms)
6323
+ Completed 500 Internal Server Error in 12ms
6324
+ -----------------------------
6325
+ HandlerTest: test_class_names
6326
+ -----------------------------
6327
+ ---------------------------------------------------------
6328
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6329
+ ---------------------------------------------------------
6330
+ ------------------------------------------------------------------
6331
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6332
+ ------------------------------------------------------------------
6333
+ -----------------------------------------
6334
+ HelloControllerTest: test_should_get_show
6335
+ -----------------------------------------
6336
+ Processing by HelloController#show as HTML
6337
+ Rendered hello/show.html.gara within layouts/application (6.1ms)
6338
+ Completed 200 OK in 43ms (Views: 42.8ms)
6339
+ -----------------------------
6340
+ HandlerTest: test_class_names
6341
+ -----------------------------
6342
+ ---------------------------------------------------------
6343
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6344
+ ---------------------------------------------------------
6345
+ ------------------------------------------------------------------
6346
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6347
+ ------------------------------------------------------------------
6348
+ ---------------------------------------------------------------------------------------------
6349
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6350
+ ---------------------------------------------------------------------------------------------
6351
+ ----------------------------------------------------------
6352
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6353
+ ----------------------------------------------------------
6354
+ -----------------------------
6355
+ HandlerTest: test_locals_work
6356
+ -----------------------------
6357
+ ------------------------------------------------------------
6358
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6359
+ ------------------------------------------------------------
6360
+ ----------------------------------
6361
+ HandlerTest: test_other_attributes
6362
+ ----------------------------------
6363
+ -------------------------------------------
6364
+ HandlerTest: test_our_handler_is_registered
6365
+ -------------------------------------------
6366
+ -------------------------------------------------------
6367
+ HandlerTest: test_real_document_has_doctype_and_newline
6368
+ -------------------------------------------------------
6369
+ ---------------------------------------------
6370
+ GaraTest: test_Gara.render_renders_a_template
6371
+ ---------------------------------------------
6372
+ ----------------------------------
6373
+ GaraTest: test_performance_is_okay
6374
+ ----------------------------------
6375
+ -------------------------------
6376
+ GaraTest: test_we_have_a_module
6377
+ -------------------------------
6378
+ ---------------------------------------------------------------------------------------------
6379
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6380
+ ---------------------------------------------------------------------------------------------
6381
+ ---------------------------------------------------------------------------------------------
6382
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6383
+ ---------------------------------------------------------------------------------------------
6384
+ ---------------------------------------------------------------------------------------------
6385
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6386
+ ---------------------------------------------------------------------------------------------
6387
+ ---------------------------------------------------------------------------------------------
6388
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6389
+ ---------------------------------------------------------------------------------------------
6390
+ ---------------------------------------------------------------------------------------------
6391
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6392
+ ---------------------------------------------------------------------------------------------
6393
+ ---------------------------------------------------------------------------------------------
6394
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6395
+ ---------------------------------------------------------------------------------------------
6396
+ ---------------------------------------------------------------------------------------------
6397
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6398
+ ---------------------------------------------------------------------------------------------
6399
+ ---------------------------------------------------------------------------------------------
6400
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6401
+ ---------------------------------------------------------------------------------------------
6402
+ ---------------------------------------------------------------------------------------------
6403
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6404
+ ---------------------------------------------------------------------------------------------
6405
+ ---------------------------------------------------------------------------------------------
6406
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6407
+ ---------------------------------------------------------------------------------------------
6408
+ ---------------------------------------------------------------------------------------------
6409
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6410
+ ---------------------------------------------------------------------------------------------
6411
+ ---------------------------------------------------------------------------------------------
6412
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6413
+ ---------------------------------------------------------------------------------------------
6414
+ ---------------------------------------------------------------------------------------------
6415
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6416
+ ---------------------------------------------------------------------------------------------
6417
+ ---------------------------------------------------------------------------------------------
6418
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6419
+ ---------------------------------------------------------------------------------------------
6420
+ ---------------------------------------------------------------------------------------------
6421
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6422
+ ---------------------------------------------------------------------------------------------
6423
+ ---------------------------------------------------------------------------------------------
6424
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6425
+ ---------------------------------------------------------------------------------------------
6426
+ ---------------------------------------------------------------------------------------------
6427
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6428
+ ---------------------------------------------------------------------------------------------
6429
+ ---------------------------------------------------------------------------------------------
6430
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6431
+ ---------------------------------------------------------------------------------------------
6432
+ ---------------------------------------------------------------------------------------------
6433
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6434
+ ---------------------------------------------------------------------------------------------
6435
+ ---------------------------------------------------------------------------------------------
6436
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6437
+ ---------------------------------------------------------------------------------------------
6438
+ ---------------------------------------------------------------------------------------------
6439
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6440
+ ---------------------------------------------------------------------------------------------
6441
+ ---------------------------------------------------------------------------------------------
6442
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6443
+ ---------------------------------------------------------------------------------------------
6444
+ ---------------------------------------------------------------------------------------------
6445
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6446
+ ---------------------------------------------------------------------------------------------
6447
+ ---------------------------------------------------------------------------------------------
6448
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6449
+ ---------------------------------------------------------------------------------------------
6450
+ ---------------------------------------------------------------------------------------------
6451
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6452
+ ---------------------------------------------------------------------------------------------
6453
+ ---------------------------------------------------------------------------------------------
6454
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6455
+ ---------------------------------------------------------------------------------------------
6456
+ ---------------------------------------------------------------------------------------------
6457
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6458
+ ---------------------------------------------------------------------------------------------
6459
+ ---------------------------------------------------------------------------------------------
6460
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6461
+ ---------------------------------------------------------------------------------------------
6462
+ ---------------------------------------------------------------------------------------------
6463
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6464
+ ---------------------------------------------------------------------------------------------
6465
+ ---------------------------------------------------------------------------------------------
6466
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6467
+ ---------------------------------------------------------------------------------------------
6468
+ ---------------------------------------------------------------------------------------------
6469
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6470
+ ---------------------------------------------------------------------------------------------
6471
+ ---------------------------------------------------------------------------------------------
6472
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6473
+ ---------------------------------------------------------------------------------------------
6474
+ ---------------------------------------------------------------------------------------------
6475
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6476
+ ---------------------------------------------------------------------------------------------
6477
+ ---------------------------------------------------------------------------------------------
6478
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6479
+ ---------------------------------------------------------------------------------------------
6480
+ ---------------------------------------------------------------------------------------------
6481
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6482
+ ---------------------------------------------------------------------------------------------
6483
+ ---------------------------------------------------------------------------------------------
6484
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6485
+ ---------------------------------------------------------------------------------------------
6486
+ ---------------------------------------------------------------------------------------------
6487
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6488
+ ---------------------------------------------------------------------------------------------
6489
+ ---------------------------------------------------------------------------------------------
6490
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6491
+ ---------------------------------------------------------------------------------------------
6492
+ ---------------------------------------------------------------------------------------------
6493
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6494
+ ---------------------------------------------------------------------------------------------
6495
+ ---------------------------------------------------------------------------------------------
6496
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6497
+ ---------------------------------------------------------------------------------------------
6498
+ ---------------------------------------------------------------------------------------------
6499
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6500
+ ---------------------------------------------------------------------------------------------
6501
+ ---------------------------------------------------------------------------------------------
6502
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6503
+ ---------------------------------------------------------------------------------------------
6504
+ ---------------------------------------------------------------------------------------------
6505
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6506
+ ---------------------------------------------------------------------------------------------
6507
+ ---------------------------------------------------------------------------------------------
6508
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6509
+ ---------------------------------------------------------------------------------------------
6510
+ ---------------------------------------------------------------------------------------------
6511
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6512
+ ---------------------------------------------------------------------------------------------
6513
+ ---------------------------------------------------------------------------------------------
6514
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6515
+ ---------------------------------------------------------------------------------------------
6516
+ ---------------------------------------------------------------------------------------------
6517
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6518
+ ---------------------------------------------------------------------------------------------
6519
+ ---------------------------------------------------------------------------------------------
6520
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6521
+ ---------------------------------------------------------------------------------------------
6522
+ -----------------------------
6523
+ HandlerTest: test_class_names
6524
+ -----------------------------
6525
+ ---------------------------------------------------------
6526
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6527
+ ---------------------------------------------------------
6528
+ ------------------------------------------------------------------
6529
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6530
+ ------------------------------------------------------------------
6531
+ ---------------------------------------------------------------------------------------------
6532
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6533
+ ---------------------------------------------------------------------------------------------
6534
+ ----------------------------------------------------------
6535
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6536
+ ----------------------------------------------------------
6537
+ -----------------------------
6538
+ HandlerTest: test_locals_work
6539
+ -----------------------------
6540
+ ------------------------------------------------------------
6541
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6542
+ ------------------------------------------------------------
6543
+ ----------------------------------
6544
+ HandlerTest: test_other_attributes
6545
+ ----------------------------------
6546
+ -------------------------------------------
6547
+ HandlerTest: test_our_handler_is_registered
6548
+ -------------------------------------------
6549
+ -------------------------------------------------------
6550
+ HandlerTest: test_real_document_has_doctype_and_newline
6551
+ -------------------------------------------------------
6552
+ -----------------------------
6553
+ HandlerTest: test_class_names
6554
+ -----------------------------
6555
+ ---------------------------------------------------------
6556
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6557
+ ---------------------------------------------------------
6558
+ ------------------------------------------------------------------
6559
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6560
+ ------------------------------------------------------------------
6561
+ ---------------------------------------------------------------------------------------------
6562
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6563
+ ---------------------------------------------------------------------------------------------
6564
+ ----------------------------------------------------------
6565
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6566
+ ----------------------------------------------------------
6567
+ -----------------------------
6568
+ HandlerTest: test_locals_work
6569
+ -----------------------------
6570
+ ------------------------------------------------------------
6571
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6572
+ ------------------------------------------------------------
6573
+ ----------------------------------
6574
+ HandlerTest: test_other_attributes
6575
+ ----------------------------------
6576
+ -------------------------------------------
6577
+ HandlerTest: test_our_handler_is_registered
6578
+ -------------------------------------------
6579
+ -------------------------------------------------------
6580
+ HandlerTest: test_real_document_has_doctype_and_newline
6581
+ -------------------------------------------------------
6582
+ -----------------------------
6583
+ HandlerTest: test_class_names
6584
+ -----------------------------
6585
+ ---------------------------------------------------------
6586
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6587
+ ---------------------------------------------------------
6588
+ ------------------------------------------------------------------
6589
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6590
+ ------------------------------------------------------------------
6591
+ ---------------------------------------------------------------------------------------------
6592
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6593
+ ---------------------------------------------------------------------------------------------
6594
+ ----------------------------------------------------------
6595
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6596
+ ----------------------------------------------------------
6597
+ -----------------------------
6598
+ HandlerTest: test_locals_work
6599
+ -----------------------------
6600
+ ------------------------------------------------------------
6601
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6602
+ ------------------------------------------------------------
6603
+ ----------------------------------
6604
+ HandlerTest: test_other_attributes
6605
+ ----------------------------------
6606
+ -------------------------------------------
6607
+ HandlerTest: test_our_handler_is_registered
6608
+ -------------------------------------------
6609
+ -------------------------------------------------------
6610
+ HandlerTest: test_real_document_has_doctype_and_newline
6611
+ -------------------------------------------------------
6612
+ -----------------------------
6613
+ HandlerTest: test_class_names
6614
+ -----------------------------
6615
+ ---------------------------------------------------------
6616
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6617
+ ---------------------------------------------------------
6618
+ ------------------------------------------------------------------
6619
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6620
+ ------------------------------------------------------------------
6621
+ ---------------------------------------------------------------------------------------------
6622
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6623
+ ---------------------------------------------------------------------------------------------
6624
+ ----------------------------------------------------------
6625
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6626
+ ----------------------------------------------------------
6627
+ -----------------------------
6628
+ HandlerTest: test_locals_work
6629
+ -----------------------------
6630
+ ------------------------------------------------------------
6631
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6632
+ ------------------------------------------------------------
6633
+ ----------------------------------
6634
+ HandlerTest: test_other_attributes
6635
+ ----------------------------------
6636
+ -------------------------------------------
6637
+ HandlerTest: test_our_handler_is_registered
6638
+ -------------------------------------------
6639
+ -------------------------------------------------------
6640
+ HandlerTest: test_real_document_has_doctype_and_newline
6641
+ -------------------------------------------------------
6642
+ -----------------------------
6643
+ HandlerTest: test_class_names
6644
+ -----------------------------
6645
+ ---------------------------------------------------------
6646
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6647
+ ---------------------------------------------------------
6648
+ ------------------------------------------------------------------
6649
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6650
+ ------------------------------------------------------------------
6651
+ ---------------------------------------------------------------------------------------------
6652
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6653
+ ---------------------------------------------------------------------------------------------
6654
+ ----------------------------------------------------------
6655
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6656
+ ----------------------------------------------------------
6657
+ -----------------------------
6658
+ HandlerTest: test_locals_work
6659
+ -----------------------------
6660
+ ------------------------------------------------------------
6661
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6662
+ ------------------------------------------------------------
6663
+ ----------------------------------
6664
+ HandlerTest: test_other_attributes
6665
+ ----------------------------------
6666
+ -------------------------------------------
6667
+ HandlerTest: test_our_handler_is_registered
6668
+ -------------------------------------------
6669
+ -------------------------------------------------------
6670
+ HandlerTest: test_real_document_has_doctype_and_newline
6671
+ -------------------------------------------------------
6672
+ -----------------------------
6673
+ HandlerTest: test_class_names
6674
+ -----------------------------
6675
+ ---------------------------------------------------------
6676
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6677
+ ---------------------------------------------------------
6678
+ ------------------------------------------------------------------
6679
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6680
+ ------------------------------------------------------------------
6681
+ ---------------------------------------------------------------------------------------------
6682
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6683
+ ---------------------------------------------------------------------------------------------
6684
+ ----------------------------------------------------------
6685
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6686
+ ----------------------------------------------------------
6687
+ -----------------------------
6688
+ HandlerTest: test_locals_work
6689
+ -----------------------------
6690
+ ------------------------------------------------------------
6691
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6692
+ ------------------------------------------------------------
6693
+ ----------------------------------
6694
+ HandlerTest: test_other_attributes
6695
+ ----------------------------------
6696
+ -------------------------------------------
6697
+ HandlerTest: test_our_handler_is_registered
6698
+ -------------------------------------------
6699
+ -------------------------------------------------------
6700
+ HandlerTest: test_real_document_has_doctype_and_newline
6701
+ -------------------------------------------------------
6702
+ -----------------------------
6703
+ HandlerTest: test_class_names
6704
+ -----------------------------
6705
+ ---------------------------------------------------------
6706
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6707
+ ---------------------------------------------------------
6708
+ ------------------------------------------------------------------
6709
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6710
+ ------------------------------------------------------------------
6711
+ ---------------------------------------------------------------------------------------------
6712
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6713
+ ---------------------------------------------------------------------------------------------
6714
+ ----------------------------------------------------------
6715
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6716
+ ----------------------------------------------------------
6717
+ -----------------------------
6718
+ HandlerTest: test_locals_work
6719
+ -----------------------------
6720
+ ------------------------------------------------------------
6721
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6722
+ ------------------------------------------------------------
6723
+ ----------------------------------
6724
+ HandlerTest: test_other_attributes
6725
+ ----------------------------------
6726
+ -------------------------------------------
6727
+ HandlerTest: test_our_handler_is_registered
6728
+ -------------------------------------------
6729
+ -------------------------------------------------------
6730
+ HandlerTest: test_real_document_has_doctype_and_newline
6731
+ -------------------------------------------------------
6732
+ -----------------------------
6733
+ HandlerTest: test_class_names
6734
+ -----------------------------
6735
+ ---------------------------------------------------------
6736
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6737
+ ---------------------------------------------------------
6738
+ ------------------------------------------------------------------
6739
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6740
+ ------------------------------------------------------------------
6741
+ ---------------------------------------------------------------------------------------------
6742
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6743
+ ---------------------------------------------------------------------------------------------
6744
+ ----------------------------------------------------------
6745
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6746
+ ----------------------------------------------------------
6747
+ -----------------------------
6748
+ HandlerTest: test_locals_work
6749
+ -----------------------------
6750
+ ------------------------------------------------------------
6751
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6752
+ ------------------------------------------------------------
6753
+ ----------------------------------
6754
+ HandlerTest: test_other_attributes
6755
+ ----------------------------------
6756
+ -------------------------------------------
6757
+ HandlerTest: test_our_handler_is_registered
6758
+ -------------------------------------------
6759
+ -------------------------------------------------------
6760
+ HandlerTest: test_real_document_has_doctype_and_newline
6761
+ -------------------------------------------------------
6762
+ ---------------------------------------
6763
+ HandlerTest: test_string_in_block_works
6764
+ ---------------------------------------
6765
+ -----------------------------
6766
+ HandlerTest: test_class_names
6767
+ -----------------------------
6768
+ ---------------------------------------------------------
6769
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6770
+ ---------------------------------------------------------
6771
+ ------------------------------------------------------------------
6772
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6773
+ ------------------------------------------------------------------
6774
+ ---------------------------------------------------------------------------------------------
6775
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6776
+ ---------------------------------------------------------------------------------------------
6777
+ ----------------------------------------------------------
6778
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6779
+ ----------------------------------------------------------
6780
+ -----------------------------
6781
+ HandlerTest: test_locals_work
6782
+ -----------------------------
6783
+ ------------------------------------------------------------
6784
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6785
+ ------------------------------------------------------------
6786
+ ----------------------------------
6787
+ HandlerTest: test_other_attributes
6788
+ ----------------------------------
6789
+ -------------------------------------------
6790
+ HandlerTest: test_our_handler_is_registered
6791
+ -------------------------------------------
6792
+ -------------------------------------------------------
6793
+ HandlerTest: test_real_document_has_doctype_and_newline
6794
+ -------------------------------------------------------
6795
+ ---------------------------------------
6796
+ HandlerTest: test_string_in_block_works
6797
+ ---------------------------------------
6798
+ -----------------------------
6799
+ HandlerTest: test_class_names
6800
+ -----------------------------
6801
+ ---------------------------------------------------------
6802
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6803
+ ---------------------------------------------------------
6804
+ ------------------------------------------------------------------
6805
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6806
+ ------------------------------------------------------------------
6807
+ ---------------------------------------------------------------------------------------------
6808
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6809
+ ---------------------------------------------------------------------------------------------
6810
+ ----------------------------------------------------------
6811
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6812
+ ----------------------------------------------------------
6813
+ -----------------------------
6814
+ HandlerTest: test_locals_work
6815
+ -----------------------------
6816
+ ------------------------------------------------------------
6817
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6818
+ ------------------------------------------------------------
6819
+ ----------------------------------
6820
+ HandlerTest: test_other_attributes
6821
+ ----------------------------------
6822
+ -------------------------------------------
6823
+ HandlerTest: test_our_handler_is_registered
6824
+ -------------------------------------------
6825
+ -------------------------------------------------------
6826
+ HandlerTest: test_real_document_has_doctype_and_newline
6827
+ -------------------------------------------------------
6828
+ ---------------------------------------
6829
+ HandlerTest: test_string_in_block_works
6830
+ ---------------------------------------
6831
+ -----------------------------
6832
+ HandlerTest: test_class_names
6833
+ -----------------------------
6834
+ ---------------------------------------------------------
6835
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6836
+ ---------------------------------------------------------
6837
+ ------------------------------------------------------------------
6838
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax
6839
+ ------------------------------------------------------------------
6840
+ ---------------------------------------------------------------------------------------------
6841
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6842
+ ---------------------------------------------------------------------------------------------
6843
+ ----------------------------------------------------------
6844
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6845
+ ----------------------------------------------------------
6846
+ -----------------------------
6847
+ HandlerTest: test_locals_work
6848
+ -----------------------------
6849
+ ------------------------------------------------------------
6850
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6851
+ ------------------------------------------------------------
6852
+ ----------------------------------
6853
+ HandlerTest: test_other_attributes
6854
+ ----------------------------------
6855
+ -------------------------------------------
6856
+ HandlerTest: test_our_handler_is_registered
6857
+ -------------------------------------------
6858
+ -------------------------------------------------------
6859
+ HandlerTest: test_real_document_has_doctype_and_newline
6860
+ -------------------------------------------------------
6861
+ ---------------------------------------
6862
+ HandlerTest: test_string_in_block_works
6863
+ ---------------------------------------
6864
+ -----------------------------
6865
+ HandlerTest: test_class_names
6866
+ -----------------------------
6867
+ ---------------------------------------------------------
6868
+ HandlerTest: test_helpers_returning_html_work_via_self_<<
6869
+ ---------------------------------------------------------
6870
+ ---------------------------------------------------------------------------------------------
6871
+ HandlerTest: test_helpers_returning_html_work_without_funny_syntax_in_sequence_within_a_block
6872
+ ---------------------------------------------------------------------------------------------
6873
+ ----------------------------------------------------------
6874
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6875
+ ----------------------------------------------------------
6876
+ -----------------------------
6877
+ HandlerTest: test_locals_work
6878
+ -----------------------------
6879
+ ------------------------------------------------------------
6880
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6881
+ ------------------------------------------------------------
6882
+ ----------------------------------
6883
+ HandlerTest: test_other_attributes
6884
+ ----------------------------------
6885
+ -------------------------------------------
6886
+ HandlerTest: test_our_handler_is_registered
6887
+ -------------------------------------------
6888
+ -------------------------------------------------------
6889
+ HandlerTest: test_real_document_has_doctype_and_newline
6890
+ -------------------------------------------------------
6891
+ ---------------------------------------
6892
+ HandlerTest: test_string_in_block_works
6893
+ ---------------------------------------
6894
+ -----------------------------
6895
+ HandlerTest: test_class_names
6896
+ -----------------------------
6897
+ --------------------------------------------------------------
6898
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
6899
+ --------------------------------------------------------------
6900
+ ------------------------------------------------------------------------
6901
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
6902
+ ------------------------------------------------------------------------
6903
+ ----------------------------------------------------------
6904
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6905
+ ----------------------------------------------------------
6906
+ -----------------------------
6907
+ HandlerTest: test_locals_work
6908
+ -----------------------------
6909
+ ------------------------------------------------------------
6910
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6911
+ ------------------------------------------------------------
6912
+ ----------------------------------
6913
+ HandlerTest: test_other_attributes
6914
+ ----------------------------------
6915
+ -------------------------------------------
6916
+ HandlerTest: test_our_handler_is_registered
6917
+ -------------------------------------------
6918
+ -------------------------------------------------------
6919
+ HandlerTest: test_real_document_has_doctype_and_newline
6920
+ -------------------------------------------------------
6921
+ ---------------------------------------
6922
+ HandlerTest: test_string_in_block_works
6923
+ ---------------------------------------
6924
+ -----------------------------
6925
+ HandlerTest: test_class_names
6926
+ -----------------------------
6927
+ --------------------------------------------------------------
6928
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
6929
+ --------------------------------------------------------------
6930
+ ------------------------------------------------------------------------
6931
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
6932
+ ------------------------------------------------------------------------
6933
+ ----------------------------------------------------------
6934
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6935
+ ----------------------------------------------------------
6936
+ -----------------------------
6937
+ HandlerTest: test_locals_work
6938
+ -----------------------------
6939
+ ------------------------------------------------------------
6940
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6941
+ ------------------------------------------------------------
6942
+ ----------------------------------
6943
+ HandlerTest: test_other_attributes
6944
+ ----------------------------------
6945
+ -------------------------------------------
6946
+ HandlerTest: test_our_handler_is_registered
6947
+ -------------------------------------------
6948
+ -------------------------------------------------------
6949
+ HandlerTest: test_real_document_has_doctype_and_newline
6950
+ -------------------------------------------------------
6951
+ ---------------------------------------
6952
+ HandlerTest: test_string_in_block_works
6953
+ ---------------------------------------
6954
+ -----------------------------
6955
+ HandlerTest: test_class_names
6956
+ -----------------------------
6957
+ --------------------------------------------------------------
6958
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
6959
+ --------------------------------------------------------------
6960
+ ------------------------------------------------------------------------
6961
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
6962
+ ------------------------------------------------------------------------
6963
+ ----------------------------------------------------------
6964
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6965
+ ----------------------------------------------------------
6966
+ -----------------------------
6967
+ HandlerTest: test_locals_work
6968
+ -----------------------------
6969
+ ------------------------------------------------------------
6970
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
6971
+ ------------------------------------------------------------
6972
+ ----------------------------------
6973
+ HandlerTest: test_other_attributes
6974
+ ----------------------------------
6975
+ -------------------------------------------
6976
+ HandlerTest: test_our_handler_is_registered
6977
+ -------------------------------------------
6978
+ -------------------------------------------------------
6979
+ HandlerTest: test_real_document_has_doctype_and_newline
6980
+ -------------------------------------------------------
6981
+ ---------------------------------------
6982
+ HandlerTest: test_string_in_block_works
6983
+ ---------------------------------------
6984
+ -----------------------------
6985
+ HandlerTest: test_class_names
6986
+ -----------------------------
6987
+ --------------------------------------------------------------
6988
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
6989
+ --------------------------------------------------------------
6990
+ ------------------------------------------------------------------------
6991
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
6992
+ ------------------------------------------------------------------------
6993
+ ----------------------------------------------------------
6994
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
6995
+ ----------------------------------------------------------
6996
+ -----------------------------
6997
+ HandlerTest: test_locals_work
6998
+ -----------------------------
6999
+ ------------------------------------------------------------
7000
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
7001
+ ------------------------------------------------------------
7002
+ ----------------------------------
7003
+ HandlerTest: test_other_attributes
7004
+ ----------------------------------
7005
+ -------------------------------------------
7006
+ HandlerTest: test_our_handler_is_registered
7007
+ -------------------------------------------
7008
+ -------------------------------------------------------
7009
+ HandlerTest: test_real_document_has_doctype_and_newline
7010
+ -------------------------------------------------------
7011
+ ---------------------------------------
7012
+ HandlerTest: test_string_in_block_works
7013
+ ---------------------------------------
7014
+ -----------------------------
7015
+ HandlerTest: test_class_names
7016
+ -----------------------------
7017
+ --------------------------------------------------------------
7018
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
7019
+ --------------------------------------------------------------
7020
+ ------------------------------------------------------------------------
7021
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
7022
+ ------------------------------------------------------------------------
7023
+ ----------------------------------------------------------
7024
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
7025
+ ----------------------------------------------------------
7026
+ -----------------------------
7027
+ HandlerTest: test_locals_work
7028
+ -----------------------------
7029
+ ------------------------------------------------------------
7030
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
7031
+ ------------------------------------------------------------
7032
+ ----------------------------------
7033
+ HandlerTest: test_other_attributes
7034
+ ----------------------------------
7035
+ -------------------------------------------
7036
+ HandlerTest: test_our_handler_is_registered
7037
+ -------------------------------------------
7038
+ -------------------------------------------------------
7039
+ HandlerTest: test_real_document_has_doctype_and_newline
7040
+ -------------------------------------------------------
7041
+ ---------------------------------------
7042
+ HandlerTest: test_string_in_block_works
7043
+ ---------------------------------------
7044
+ -----------------------------
7045
+ HandlerTest: test_class_names
7046
+ -----------------------------
7047
+ --------------------------------------------------------------
7048
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
7049
+ --------------------------------------------------------------
7050
+ ------------------------------------------------------------------------
7051
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
7052
+ ------------------------------------------------------------------------
7053
+ ----------------------------------------------------------
7054
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
7055
+ ----------------------------------------------------------
7056
+ -----------------------------
7057
+ HandlerTest: test_locals_work
7058
+ -----------------------------
7059
+ ------------------------------------------------------------
7060
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
7061
+ ------------------------------------------------------------
7062
+ ----------------------------------
7063
+ HandlerTest: test_other_attributes
7064
+ ----------------------------------
7065
+ -------------------------------------------
7066
+ HandlerTest: test_our_handler_is_registered
7067
+ -------------------------------------------
7068
+ -------------------------------------------------------
7069
+ HandlerTest: test_real_document_has_doctype_and_newline
7070
+ -------------------------------------------------------
7071
+ ---------------------------------------
7072
+ HandlerTest: test_string_in_block_works
7073
+ ---------------------------------------
7074
+ -----------------------------
7075
+ HandlerTest: test_class_names
7076
+ -----------------------------
7077
+ --------------------------------------------------------------
7078
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
7079
+ --------------------------------------------------------------
7080
+ ------------------------------------------------------------------------
7081
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
7082
+ ------------------------------------------------------------------------
7083
+ ----------------------------------------------------------
7084
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
7085
+ ----------------------------------------------------------
7086
+ -----------------------------
7087
+ HandlerTest: test_locals_work
7088
+ -----------------------------
7089
+ ------------------------------------------------------------
7090
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
7091
+ ------------------------------------------------------------
7092
+ ----------------------------------
7093
+ HandlerTest: test_other_attributes
7094
+ ----------------------------------
7095
+ -------------------------------------------
7096
+ HandlerTest: test_our_handler_is_registered
7097
+ -------------------------------------------
7098
+ -------------------------------------------------------
7099
+ HandlerTest: test_real_document_has_doctype_and_newline
7100
+ -------------------------------------------------------
7101
+ ---------------------------------------
7102
+ HandlerTest: test_string_in_block_works
7103
+ ---------------------------------------
7104
+ ---------------------------------------------
7105
+ GaraTest: test_Gara.render_renders_a_template
7106
+ ---------------------------------------------
7107
+ ----------------------------------
7108
+ GaraTest: test_performance_is_okay
7109
+ ----------------------------------
7110
+ -------------------------------
7111
+ GaraTest: test_we_have_a_module
7112
+ -------------------------------
7113
+ -----------------------------------------
7114
+ HelloControllerTest: test_should_get_show
7115
+ -----------------------------------------
7116
+ Processing by HelloController#show as HTML
7117
+ Rendered hello/show.html.gara within layouts/application (51.8ms)
7118
+ Completed 200 OK in 121ms (Views: 121.1ms)
7119
+ -----------------------------------------
7120
+ HelloControllerTest: test_should_get_show
7121
+ -----------------------------------------
7122
+ Processing by HelloController#show as HTML
7123
+ Rendered hello/show.html.gara within layouts/application (48.0ms)
7124
+ Completed 200 OK in 112ms (Views: 111.5ms)
7125
+ ---------------------------------------------
7126
+ GaraTest: test_Gara.render_renders_a_template
7127
+ ---------------------------------------------
7128
+ ----------------------------------
7129
+ GaraTest: test_performance_is_okay
7130
+ ----------------------------------
7131
+ -------------------------------
7132
+ GaraTest: test_we_have_a_module
7133
+ -------------------------------
7134
+ -----------------------------
7135
+ HandlerTest: test_class_names
7136
+ -----------------------------
7137
+ --------------------------------------------------------------
7138
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
7139
+ --------------------------------------------------------------
7140
+ ------------------------------------------------------------------------
7141
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
7142
+ ------------------------------------------------------------------------
7143
+ ----------------------------------------------------------
7144
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
7145
+ ----------------------------------------------------------
7146
+ -----------------------------
7147
+ HandlerTest: test_locals_work
7148
+ -----------------------------
7149
+ ------------------------------------------------------------
7150
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
7151
+ ------------------------------------------------------------
7152
+ ----------------------------------
7153
+ HandlerTest: test_other_attributes
7154
+ ----------------------------------
7155
+ -------------------------------------------
7156
+ HandlerTest: test_our_handler_is_registered
7157
+ -------------------------------------------
7158
+ -------------------------------------------------------
7159
+ HandlerTest: test_real_document_has_doctype_and_newline
7160
+ -------------------------------------------------------
7161
+ ---------------------------------------
7162
+ HandlerTest: test_string_in_block_works
7163
+ ---------------------------------------
7164
+ -----------------------------
7165
+ HandlerTest: test_class_names
7166
+ -----------------------------
7167
+ --------------------------------------------------------------
7168
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
7169
+ --------------------------------------------------------------
7170
+ ------------------------------------------------------------------------
7171
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
7172
+ ------------------------------------------------------------------------
7173
+ ----------------------------------------------------------
7174
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
7175
+ ----------------------------------------------------------
7176
+ -----------------------------
7177
+ HandlerTest: test_locals_work
7178
+ -----------------------------
7179
+ ------------------------------------------------------------
7180
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
7181
+ ------------------------------------------------------------
7182
+ ----------------------------------
7183
+ HandlerTest: test_other_attributes
7184
+ ----------------------------------
7185
+ -------------------------------------------
7186
+ HandlerTest: test_our_handler_is_registered
7187
+ -------------------------------------------
7188
+ -------------------------------------------------------
7189
+ HandlerTest: test_real_document_has_doctype_and_newline
7190
+ -------------------------------------------------------
7191
+ ---------------------------------------
7192
+ HandlerTest: test_string_in_block_works
7193
+ ---------------------------------------
7194
+ -----------------------------------------
7195
+ HelloControllerTest: test_should_get_show
7196
+ -----------------------------------------
7197
+ Processing by HelloController#show as HTML
7198
+ Rendered hello/show.html.gara within layouts/application (58.8ms)
7199
+ Completed 200 OK in 121ms (Views: 121.1ms)
7200
+ ---------------------------------------------
7201
+ GaraTest: test_Gara.render_renders_a_template
7202
+ ---------------------------------------------
7203
+ ----------------------------------
7204
+ GaraTest: test_performance_is_okay
7205
+ ----------------------------------
7206
+ -------------------------------
7207
+ GaraTest: test_we_have_a_module
7208
+ -------------------------------
7209
+ -----------------------------------------
7210
+ HelloControllerTest: test_should_get_show
7211
+ -----------------------------------------
7212
+ Processing by HelloController#show as HTML
7213
+ Rendered hello/show.html.gara within layouts/application (5.6ms)
7214
+ Completed 200 OK in 33ms (Views: 32.4ms)
7215
+ -----------------------------
7216
+ HandlerTest: test_class_names
7217
+ -----------------------------
7218
+ --------------------------------------------------------------
7219
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
7220
+ --------------------------------------------------------------
7221
+ ------------------------------------------------------------------------
7222
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
7223
+ ------------------------------------------------------------------------
7224
+ ----------------------------------------------------------
7225
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
7226
+ ----------------------------------------------------------
7227
+ -----------------------------
7228
+ HandlerTest: test_locals_work
7229
+ -----------------------------
7230
+ ------------------------------------------------------------
7231
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
7232
+ ------------------------------------------------------------
7233
+ ----------------------------------
7234
+ HandlerTest: test_other_attributes
7235
+ ----------------------------------
7236
+ -------------------------------------------
7237
+ HandlerTest: test_our_handler_is_registered
7238
+ -------------------------------------------
7239
+ -------------------------------------------------------
7240
+ HandlerTest: test_real_document_has_doctype_and_newline
7241
+ -------------------------------------------------------
7242
+ ---------------------------------------
7243
+ HandlerTest: test_string_in_block_works
7244
+ ---------------------------------------
7245
+ ---------------------------------------------
7246
+ GaraTest: test_Gara.render_renders_a_template
7247
+ ---------------------------------------------
7248
+ ----------------------------------
7249
+ GaraTest: test_performance_is_okay
7250
+ ----------------------------------
7251
+ -------------------------------
7252
+ GaraTest: test_we_have_a_module
7253
+ -------------------------------
7254
+ -----------------------------
7255
+ HandlerTest: test_class_names
7256
+ -----------------------------
7257
+ --------------------------------------------------------------
7258
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
7259
+ --------------------------------------------------------------
7260
+ ------------------------------------------------------------------------
7261
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
7262
+ ------------------------------------------------------------------------
7263
+ ----------------------------------------------------------
7264
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
7265
+ ----------------------------------------------------------
7266
+ -----------------------------
7267
+ HandlerTest: test_locals_work
7268
+ -----------------------------
7269
+ ------------------------------------------------------------
7270
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
7271
+ ------------------------------------------------------------
7272
+ ----------------------------------
7273
+ HandlerTest: test_other_attributes
7274
+ ----------------------------------
7275
+ -------------------------------------------
7276
+ HandlerTest: test_our_handler_is_registered
7277
+ -------------------------------------------
7278
+ -------------------------------------------------------
7279
+ HandlerTest: test_real_document_has_doctype_and_newline
7280
+ -------------------------------------------------------
7281
+ ---------------------------------------
7282
+ HandlerTest: test_string_in_block_works
7283
+ ---------------------------------------
7284
+ ---------------------------------------------
7285
+ GaraTest: test_Gara.render_renders_a_template
7286
+ ---------------------------------------------
7287
+ ----------------------------------
7288
+ GaraTest: test_performance_is_okay
7289
+ ----------------------------------
7290
+ -------------------------------
7291
+ GaraTest: test_we_have_a_module
7292
+ -------------------------------
7293
+ -----------------------------------------
7294
+ HelloControllerTest: test_should_get_show
7295
+ -----------------------------------------
7296
+ Processing by HelloController#show as HTML
7297
+ Rendered hello/show.html.gara within layouts/application (12.5ms)
7298
+ Completed 200 OK in 34ms (Views: 33.8ms)
7299
+ -----------------------------------------
7300
+ HelloControllerTest: test_should_get_show
7301
+ -----------------------------------------
7302
+ Processing by HelloController#show as HTML
7303
+ Rendered hello/show.html.gara within layouts/application (3.7ms)
7304
+ Completed 200 OK in 29ms (Views: 29.1ms)
7305
+ -----------------------------
7306
+ HandlerTest: test_class_names
7307
+ -----------------------------
7308
+ --------------------------------------------------------------
7309
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
7310
+ --------------------------------------------------------------
7311
+ ------------------------------------------------------------------------
7312
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
7313
+ ------------------------------------------------------------------------
7314
+ ----------------------------------------------------------
7315
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
7316
+ ----------------------------------------------------------
7317
+ -----------------------------
7318
+ HandlerTest: test_locals_work
7319
+ -----------------------------
7320
+ ------------------------------------------------------------
7321
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
7322
+ ------------------------------------------------------------
7323
+ ----------------------------------
7324
+ HandlerTest: test_other_attributes
7325
+ ----------------------------------
7326
+ -------------------------------------------
7327
+ HandlerTest: test_our_handler_is_registered
7328
+ -------------------------------------------
7329
+ -------------------------------------------------------
7330
+ HandlerTest: test_real_document_has_doctype_and_newline
7331
+ -------------------------------------------------------
7332
+ ---------------------------------------
7333
+ HandlerTest: test_string_in_block_works
7334
+ ---------------------------------------
7335
+ ---------------------------------------------
7336
+ GaraTest: test_Gara.render_renders_a_template
7337
+ ---------------------------------------------
7338
+ ----------------------------------
7339
+ GaraTest: test_performance_is_okay
7340
+ ----------------------------------
7341
+ -------------------------------
7342
+ GaraTest: test_we_have_a_module
7343
+ -------------------------------
7344
+ -----------------------------
7345
+ HandlerTest: test_class_names
7346
+ -----------------------------
7347
+ --------------------------------------------------------------
7348
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
7349
+ --------------------------------------------------------------
7350
+ ------------------------------------------------------------------------
7351
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
7352
+ ------------------------------------------------------------------------
7353
+ ----------------------------------------------------------
7354
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
7355
+ ----------------------------------------------------------
7356
+ -----------------------------
7357
+ HandlerTest: test_locals_work
7358
+ -----------------------------
7359
+ ------------------------------------------------------------
7360
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
7361
+ ------------------------------------------------------------
7362
+ ----------------------------------
7363
+ HandlerTest: test_other_attributes
7364
+ ----------------------------------
7365
+ -------------------------------------------
7366
+ HandlerTest: test_our_handler_is_registered
7367
+ -------------------------------------------
7368
+ -------------------------------------------------------
7369
+ HandlerTest: test_real_document_has_doctype_and_newline
7370
+ -------------------------------------------------------
7371
+ ---------------------------------------
7372
+ HandlerTest: test_string_in_block_works
7373
+ ---------------------------------------
7374
+ ---------------------------------------------
7375
+ GaraTest: test_Gara.render_renders_a_template
7376
+ ---------------------------------------------
7377
+ ----------------------------------------------
7378
+ GaraTest: test_another_emitter_may_be_supplied
7379
+ ----------------------------------------------
7380
+ ----------------------------------
7381
+ GaraTest: test_performance_is_okay
7382
+ ----------------------------------
7383
+ -------------------------------
7384
+ GaraTest: test_we_have_a_module
7385
+ -------------------------------
7386
+ -----------------------------------------
7387
+ HelloControllerTest: test_should_get_show
7388
+ -----------------------------------------
7389
+ Processing by HelloController#show as HTML
7390
+ Rendered hello/show.html.gara within layouts/application (4.0ms)
7391
+ Completed 200 OK in 30ms (Views: 30.1ms)
7392
+ -----------------------------------------
7393
+ HelloControllerTest: test_should_get_show
7394
+ -----------------------------------------
7395
+ Processing by HelloController#show as HTML
7396
+ Rendered hello/show.html.gara within layouts/application (15.4ms)
7397
+ Completed 200 OK in 59ms (Views: 58.6ms)
7398
+ ---------------------------------------------
7399
+ GaraTest: test_Gara.render_renders_a_template
7400
+ ---------------------------------------------
7401
+ ----------------------------------------------
7402
+ GaraTest: test_another_emitter_may_be_supplied
7403
+ ----------------------------------------------
7404
+ ----------------------------------
7405
+ GaraTest: test_performance_is_okay
7406
+ ----------------------------------
7407
+ -------------------------------
7408
+ GaraTest: test_we_have_a_module
7409
+ -------------------------------
7410
+ -----------------------------
7411
+ HandlerTest: test_class_names
7412
+ -----------------------------
7413
+ --------------------------------------------------------------
7414
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
7415
+ --------------------------------------------------------------
7416
+ ------------------------------------------------------------------------
7417
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
7418
+ ------------------------------------------------------------------------
7419
+ ----------------------------------------------------------
7420
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
7421
+ ----------------------------------------------------------
7422
+ -----------------------------
7423
+ HandlerTest: test_locals_work
7424
+ -----------------------------
7425
+ ------------------------------------------------------------
7426
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
7427
+ ------------------------------------------------------------
7428
+ ----------------------------------
7429
+ HandlerTest: test_other_attributes
7430
+ ----------------------------------
7431
+ -------------------------------------------
7432
+ HandlerTest: test_our_handler_is_registered
7433
+ -------------------------------------------
7434
+ -------------------------------------------------------
7435
+ HandlerTest: test_real_document_has_doctype_and_newline
7436
+ -------------------------------------------------------
7437
+ ---------------------------------------
7438
+ HandlerTest: test_string_in_block_works
7439
+ ---------------------------------------
7440
+ ---------------------------------------------
7441
+ GaraTest: test_Gara.render_renders_a_template
7442
+ ---------------------------------------------
7443
+ ----------------------------------------------
7444
+ GaraTest: test_another_emitter_may_be_supplied
7445
+ ----------------------------------------------
7446
+ ----------------------------------
7447
+ GaraTest: test_performance_is_okay
7448
+ ----------------------------------
7449
+ -------------------------------
7450
+ GaraTest: test_we_have_a_module
7451
+ -------------------------------
7452
+ -----------------------------
7453
+ HandlerTest: test_class_names
7454
+ -----------------------------
7455
+ --------------------------------------------------------------
7456
+ HandlerTest: test_helpers_returning_html_when_alone_in_a_block
7457
+ --------------------------------------------------------------
7458
+ ------------------------------------------------------------------------
7459
+ HandlerTest: test_helpers_returning_html_work_in_sequence_within_a_block
7460
+ ------------------------------------------------------------------------
7461
+ ----------------------------------------------------------
7462
+ HandlerTest: test_html_generates_<h1>Hello</h1>_by_default
7463
+ ----------------------------------------------------------
7464
+ -----------------------------
7465
+ HandlerTest: test_locals_work
7466
+ -----------------------------
7467
+ ------------------------------------------------------------
7468
+ HandlerTest: test_nesting_elements_with_ruby_block_structure
7469
+ ------------------------------------------------------------
7470
+ ----------------------------------
7471
+ HandlerTest: test_other_attributes
7472
+ ----------------------------------
7473
+ -------------------------------------------
7474
+ HandlerTest: test_our_handler_is_registered
7475
+ -------------------------------------------
7476
+ -------------------------------------------------------
7477
+ HandlerTest: test_real_document_has_doctype_and_newline
7478
+ -------------------------------------------------------
7479
+ ---------------------------------------
7480
+ HandlerTest: test_string_in_block_works
7481
+ ---------------------------------------
7482
+ -----------------------------------------
7483
+ HelloControllerTest: test_should_get_show
7484
+ -----------------------------------------
7485
+ Processing by HelloController#show as HTML
7486
+ Rendered hello/show.html.gara within layouts/application (10.3ms)
7487
+ Completed 200 OK in 39ms (Views: 38.5ms)