Methods
- T
-
- test_blank,
- test_cdata_tag,
- test_doctype_tag,
- test_less_than_with_space,
- test_less_than_without_matching_greater_than,
- test_space,
- test_tag_simple_closing,
- test_tag_simple_open,
- test_tag_simple_self_closing,
- test_tag_with_double_quoted_attribute,
- test_tag_with_double_quoted_attribute_with_escape,
- test_tag_with_gt_char_in_attribute,
- test_tag_with_lt_char_in_attribute,
- test_tag_with_single_quoted_attribute,
- test_tag_with_single_quoted_attribute_with_escape,
- test_tag_with_unquoted_attribute,
- test_unterminated_cdata_tag,
- test_unterminated_comment
Instance Public methods
test_blank()
Link
test_cdata_tag()
Link
test_doctype_tag()
Link
test_less_than_with_space()
Link
test_less_than_without_matching_greater_than()
Link
# File actionpack/test/template/html-scanner/tokenizer_test.rb, line 94 def test_less_than_without_matching_greater_than tokenize %Q{hello <span onmouseover="gotcha"\n<b>foo</b>\nbar</span>} assert_next %Q{hello } assert_next %Q{<span onmouseover="gotcha"\n} assert_next %Q{<b>} assert_next %Q{foo} assert_next %Q{</b>} assert_next %Q{\nbar} assert_next %Q{</span>} assert_end end
test_space()
Link
test_tag_simple_closing()
Link
test_tag_simple_open()
Link
test_tag_simple_self_closing()
Link
test_tag_with_double_quoted_attribute()
Link
test_tag_with_double_quoted_attribute_with_escape()
Link
test_tag_with_gt_char_in_attribute()
Link
test_tag_with_lt_char_in_attribute()
Link
test_tag_with_single_quoted_attribute()
Link
test_tag_with_single_quoted_attribute_with_escape()
Link
test_tag_with_unquoted_attribute()
Link
test_unterminated_cdata_tag()
Link