2015-12-16 00:07:31 -05:00
|
|
|
# frozen_string_literal: false
|
2012-11-26 23:28:14 -05:00
|
|
|
require 'rdoc/test_case'
|
|
|
|
|
|
|
|
class TestRDocMarkupToJoinedParagraph < RDoc::TestCase
|
|
|
|
|
|
|
|
def setup
|
|
|
|
super
|
|
|
|
|
|
|
|
@to = RDoc::Markup::ToJoinedParagraph.new
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_accept_paragraph
|
|
|
|
parsed = para('hello', ' ', 'world')
|
|
|
|
|
|
|
|
@to.accept_paragraph parsed
|
|
|
|
|
|
|
|
expected = para('hello world')
|
|
|
|
|
|
|
|
assert_equal expected, parsed
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_accept_paragraph_break
|
|
|
|
parsed = para('hello', ' ', 'world', hard_break, 'everyone')
|
|
|
|
|
|
|
|
@to.accept_paragraph parsed
|
|
|
|
|
|
|
|
expected = para('hello world', hard_break, 'everyone')
|
|
|
|
|
|
|
|
assert_equal expected, parsed
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|