summaryrefslogtreecommitdiff
path: root/test/rdoc/test_rdoc_markup_hard_break.rb
blob: 5d2d3596462212f423db5ad14b299666ae49fd0a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
# frozen_string_literal: false
require 'rdoc/test_case'

class TestRDocMarkupHardBreak < RDoc::TestCase

  def setup
    super

    @hb = RDoc::Markup::HardBreak.new
  end

  def test_accept
    visitor = Object.new

    def visitor.accept_hard_break(obj) @obj = obj end
    def visitor.obj() @obj end

    @hb.accept visitor

    assert_same @hb, visitor.obj
  end

  def test_equals2
    other = RDoc::Markup::HardBreak.new

    assert_equal @hb, other

    refute_equal @hb, Object.new
  end

end