test/test_helper.rb in jekyll-toc-0.2.1 vs test/test_helper.rb in jekyll-toc-0.3.0.pre1
- old
+ new
@@ -2,17 +2,17 @@
SimpleCov.start
require 'jekyll'
require 'minitest/autorun'
-SIMPLE_HTML = <<EOL
+SIMPLE_HTML = <<HTML
<h1>Simple H1</h1>
<h2>Simple H2</h2>
<h3>Simple H3</h3>
<h4>Simple H4</h4>
<h5>Simple H5</h5>
<h6>Simple H6</h6>
-EOL
+HTML
module TestHelpers
def read_html_and_create_parser
@parser = Jekyll::TableOfContents::Parser.new(SIMPLE_HTML)
assert_match(/Simple H1/, @parser.doc.inner_html)