blob: 31d72d0cf4eebe104f431736a116949dea0b3ac6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
require 'test_helper'
class DocumentTest < Test::Unit::TestCase
# setup for test
def setup
@doc = Asciidoctor::Document.new(File.readlines(sample_doc_path(:asciidoc_index)))
end
def test_title
assert_equal "AsciiDoc Home Page", @doc.title
end
def test_with_no_title
d = Asciidoctor::Document.new("Snorf")
assert_nil d.title
end
def test_is_section_heading
assert @doc.send(:is_section_heading?, "AsciiDoc Home Page", "==================")
assert @doc.send(:is_section_heading?, "=== AsciiDoc Home Page")
end
end
|