summaryrefslogtreecommitdiff
path: root/test/rdoc/test_rdoc_attr.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rdoc/test_rdoc_attr.rb')
-rw-r--r--test/rdoc/test_rdoc_attr.rb29
1 files changed, 21 insertions, 8 deletions
diff --git a/test/rdoc/test_rdoc_attr.rb b/test/rdoc/test_rdoc_attr.rb
index 10965d00b6..9751cc175d 100644
--- a/test/rdoc/test_rdoc_attr.rb
+++ b/test/rdoc/test_rdoc_attr.rb
@@ -8,6 +8,12 @@ class TestRDocAttr < MiniTest::Unit::TestCase
@a = RDoc::Attr.new nil, 'attr', 'RW', ''
end
+ def test_aref
+ m = RDoc::Attr.new nil, 'attr', 'RW', nil
+
+ assert_equal 'attribute-i-attr', m.aref
+ end
+
def test_arglists
assert_nil @a.arglists
end
@@ -20,6 +26,18 @@ class TestRDocAttr < MiniTest::Unit::TestCase
assert_nil @a.call_seq
end
+ def test_definition
+ assert_equal 'attr_accessor', @a.definition
+
+ @a.rw = 'R'
+
+ assert_equal 'attr_reader', @a.definition
+
+ @a.rw = 'W'
+
+ assert_equal 'attr_writer', @a.definition
+ end
+
def test_full_name
assert_equal '(unknown)#attr', @a.full_name
end
@@ -33,15 +51,10 @@ class TestRDocAttr < MiniTest::Unit::TestCase
end
def test_type
- assert_equal 'attr_accessor', @a.type
-
- @a.rw = 'R'
-
- assert_equal 'attr_reader', @a.type
-
- @a.rw = 'W'
+ assert_equal 'instance', @a.type
- assert_equal 'attr_writer', @a.type
+ @a.singleton = true
+ assert_equal 'class', @a.type
end
end