2010-04-01 03:45:16 -04:00
|
|
|
require 'rubygems'
|
|
|
|
require 'minitest/autorun'
|
|
|
|
require 'rdoc/rdoc'
|
|
|
|
|
|
|
|
class TestRDocAttr < MiniTest::Unit::TestCase
|
|
|
|
|
|
|
|
def setup
|
|
|
|
@a = RDoc::Attr.new nil, 'attr', 'RW', ''
|
|
|
|
end
|
|
|
|
|
2010-04-10 02:36:13 -04:00
|
|
|
def test_arglists
|
|
|
|
assert_nil @a.arglists
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_block_params
|
|
|
|
assert_nil @a.block_params
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_call_seq
|
|
|
|
assert_nil @a.call_seq
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_full_name
|
|
|
|
assert_equal '(unknown)#attr', @a.full_name
|
|
|
|
end
|
|
|
|
|
2010-04-10 02:36:13 -04:00
|
|
|
def test_params
|
|
|
|
assert_nil @a.params
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_singleton
|
|
|
|
refute @a.singleton
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_type
|
|
|
|
assert_equal 'attr_accessor', @a.type
|
|
|
|
|
|
|
|
@a.rw = 'R'
|
|
|
|
|
|
|
|
assert_equal 'attr_reader', @a.type
|
|
|
|
|
|
|
|
@a.rw = 'W'
|
|
|
|
|
|
|
|
assert_equal 'attr_writer', @a.type
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|
|
|
|
|