2010-04-01 03:45:16 -04:00
|
|
|
require 'pp'
|
2008-10-24 19:05:28 -04:00
|
|
|
require 'rubygems'
|
2010-04-01 03:45:16 -04:00
|
|
|
require 'minitest/autorun'
|
2008-07-17 20:46:16 -04:00
|
|
|
require 'tmpdir'
|
2010-04-01 03:45:16 -04:00
|
|
|
require 'fileutils'
|
2011-05-13 20:39:16 -04:00
|
|
|
require 'stringio'
|
2008-07-17 20:46:16 -04:00
|
|
|
require 'rdoc/ri/driver'
|
|
|
|
|
2008-10-24 19:05:28 -04:00
|
|
|
class TestRDocRIDriver < MiniTest::Unit::TestCase
|
2008-07-17 20:46:16 -04:00
|
|
|
|
|
|
|
def setup
|
2010-04-01 03:45:16 -04:00
|
|
|
@RM = RDoc::Markup
|
|
|
|
|
2008-07-17 20:46:16 -04:00
|
|
|
@tmpdir = File.join Dir.tmpdir, "test_rdoc_ri_driver_#{$$}"
|
|
|
|
@home_ri = File.join @tmpdir, 'dot_ri'
|
|
|
|
|
|
|
|
FileUtils.mkdir_p @tmpdir
|
|
|
|
FileUtils.mkdir_p @home_ri
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
@orig_ri = ENV['RI']
|
|
|
|
@orig_home = ENV['HOME']
|
|
|
|
ENV['HOME'] = @tmpdir
|
|
|
|
ENV.delete 'RI'
|
|
|
|
|
2011-06-16 00:59:24 -04:00
|
|
|
@options = RDoc::RI::Driver.process_args []
|
|
|
|
@options[:home] = @tmpdir
|
|
|
|
@options[:use_stdout] = true
|
|
|
|
@options[:formatter] = @RM::ToRdoc
|
|
|
|
@driver = RDoc::RI::Driver.new @options
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def teardown
|
2010-04-01 03:45:16 -04:00
|
|
|
ENV['HOME'] = @orig_home
|
|
|
|
ENV['RI'] = @orig_ri
|
2008-07-17 20:46:16 -04:00
|
|
|
FileUtils.rm_rf @tmpdir
|
|
|
|
end
|
|
|
|
|
2010-04-02 02:26:24 -04:00
|
|
|
DUMMY_PAGER = ":;\n"
|
|
|
|
|
|
|
|
def with_dummy_pager
|
|
|
|
pager_env, ENV['RI_PAGER'] = ENV['RI_PAGER'], DUMMY_PAGER
|
|
|
|
yield
|
|
|
|
ensure
|
|
|
|
ENV['RI_PAGER'] = pager_env
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def mu_pp(obj)
|
|
|
|
s = ''
|
|
|
|
s = PP.pp obj, s
|
|
|
|
s = s.force_encoding(Encoding.default_external) if defined? Encoding
|
|
|
|
s.chomp
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_self_dump
|
|
|
|
util_store
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
out, = capture_io do
|
2010-04-01 03:45:16 -04:00
|
|
|
RDoc::RI::Driver.dump @store.cache_path
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_match %r%:class_methods%, out
|
|
|
|
assert_match %r%:modules%, out
|
|
|
|
assert_match %r%:instance_methods%, out
|
|
|
|
assert_match %r%:ancestors%, out
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_add_also_in_empty
|
|
|
|
out = @RM::Document.new
|
|
|
|
|
|
|
|
@driver.add_also_in out, []
|
|
|
|
|
|
|
|
assert_empty out
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_add_also_in
|
|
|
|
util_multi_store
|
|
|
|
@store1.type = :system
|
|
|
|
@store2.type = :home
|
|
|
|
|
|
|
|
out = @RM::Document.new
|
|
|
|
|
|
|
|
@driver.add_also_in out, [@store1, @store2]
|
|
|
|
|
|
|
|
expected = @RM::Document.new(
|
|
|
|
@RM::Rule.new(1),
|
|
|
|
@RM::Paragraph.new('Also found in:'),
|
2010-12-19 22:22:49 -05:00
|
|
|
@RM::Verbatim.new("ruby core\n",
|
|
|
|
"~/.ri\n"))
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
assert_equal expected, out
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_add_class
|
|
|
|
util_multi_store
|
|
|
|
|
|
|
|
out = @RM::Document.new
|
|
|
|
|
|
|
|
@driver.add_class out, 'Bar', [@cBar]
|
|
|
|
|
|
|
|
expected = @RM::Document.new(
|
|
|
|
@RM::Heading.new(1, 'Bar < Foo'),
|
|
|
|
@RM::BlankLine.new)
|
|
|
|
|
|
|
|
assert_equal expected, out
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_add_from
|
|
|
|
util_store
|
|
|
|
@store.type = :system
|
|
|
|
|
|
|
|
out = @RM::Document.new
|
|
|
|
|
|
|
|
@driver.add_from out, @store
|
|
|
|
|
|
|
|
expected = @RM::Document.new @RM::Paragraph.new("(from ruby core)")
|
|
|
|
|
|
|
|
assert_equal expected, out
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_add_includes_empty
|
|
|
|
out = @RM::Document.new
|
|
|
|
|
|
|
|
@driver.add_includes out, []
|
|
|
|
|
|
|
|
assert_empty out
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_add_includes_many
|
|
|
|
util_store
|
|
|
|
|
|
|
|
out = @RM::Document.new
|
|
|
|
|
|
|
|
enum = RDoc::Include.new 'Enumerable', nil
|
|
|
|
@cFoo.add_include enum
|
|
|
|
|
|
|
|
@driver.add_includes out, [[[@cFooInc, enum], @store]]
|
|
|
|
|
|
|
|
expected = @RM::Document.new(
|
|
|
|
@RM::Rule.new(1),
|
|
|
|
@RM::Heading.new(1, "Includes:"),
|
|
|
|
@RM::Paragraph.new("(from #{@store.friendly_path})"),
|
|
|
|
@RM::BlankLine.new,
|
|
|
|
@RM::Paragraph.new("Inc"),
|
|
|
|
@RM::BlankLine.new,
|
|
|
|
@RM::Paragraph.new("Include thingy"),
|
|
|
|
@RM::BlankLine.new,
|
2010-12-19 22:22:49 -05:00
|
|
|
@RM::Verbatim.new("Enumerable\n"))
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
assert_equal expected, out
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_add_includes_many_no_doc
|
|
|
|
util_store
|
|
|
|
|
|
|
|
out = @RM::Document.new
|
|
|
|
|
|
|
|
enum = RDoc::Include.new 'Enumerable', nil
|
|
|
|
@cFoo.add_include enum
|
|
|
|
@cFooInc.instance_variable_set :@comment, ''
|
|
|
|
|
|
|
|
@driver.add_includes out, [[[@cFooInc, enum], @store]]
|
|
|
|
|
|
|
|
expected = @RM::Document.new(
|
|
|
|
@RM::Rule.new(1),
|
|
|
|
@RM::Heading.new(1, "Includes:"),
|
|
|
|
@RM::Paragraph.new("(from #{@store.friendly_path})"),
|
2010-12-19 22:22:49 -05:00
|
|
|
@RM::Verbatim.new("Inc\n",
|
|
|
|
"Enumerable\n"))
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
assert_equal expected, out
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_add_includes_one
|
|
|
|
util_store
|
|
|
|
|
|
|
|
out = @RM::Document.new
|
|
|
|
|
|
|
|
@driver.add_includes out, [[[@cFooInc], @store]]
|
|
|
|
|
|
|
|
expected = @RM::Document.new(
|
|
|
|
@RM::Rule.new(1),
|
|
|
|
@RM::Heading.new(1, "Includes:"),
|
|
|
|
@RM::Paragraph.new("Inc (from #{@store.friendly_path})"),
|
|
|
|
@RM::BlankLine.new,
|
|
|
|
@RM::Paragraph.new("Include thingy"),
|
|
|
|
@RM::BlankLine.new)
|
|
|
|
|
|
|
|
assert_equal expected, out
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_add_method_list
|
|
|
|
out = @RM::Document.new
|
|
|
|
|
2011-06-16 00:59:24 -04:00
|
|
|
@driver.add_method_list out, %w[new parse], 'Class methods'
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
expected = @RM::Document.new(
|
|
|
|
@RM::Heading.new(1, 'Class methods:'),
|
|
|
|
@RM::BlankLine.new,
|
2010-12-19 22:22:49 -05:00
|
|
|
@RM::Verbatim.new('new'),
|
2011-06-16 00:59:24 -04:00
|
|
|
@RM::Verbatim.new('parse'),
|
|
|
|
@RM::BlankLine.new)
|
|
|
|
|
|
|
|
assert_equal expected, out
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_add_method_list_interative
|
|
|
|
@options[:interactive] = true
|
|
|
|
driver = RDoc::RI::Driver.new @options
|
|
|
|
|
|
|
|
out = @RM::Document.new
|
|
|
|
|
|
|
|
driver.add_method_list out, %w[new parse], 'Class methods'
|
|
|
|
|
|
|
|
expected = @RM::Document.new(
|
|
|
|
@RM::Heading.new(1, 'Class methods:'),
|
|
|
|
@RM::BlankLine.new,
|
|
|
|
@RM::IndentedParagraph.new(2, 'new, parse'),
|
2010-04-01 03:45:16 -04:00
|
|
|
@RM::BlankLine.new)
|
|
|
|
|
|
|
|
assert_equal expected, out
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_add_method_list_none
|
|
|
|
out = @RM::Document.new
|
|
|
|
|
|
|
|
@driver.add_method_list out, nil, 'Class'
|
|
|
|
|
|
|
|
assert_equal @RM::Document.new, out
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_ancestors_of
|
|
|
|
util_ancestors_store
|
|
|
|
|
|
|
|
assert_equal %w[X Mixin Object Foo], @driver.ancestors_of('Foo::Bar')
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_classes
|
|
|
|
util_multi_store
|
|
|
|
|
|
|
|
expected = {
|
|
|
|
'Ambiguous' => [@store1, @store2],
|
|
|
|
'Bar' => [@store2],
|
|
|
|
'Foo' => [@store1],
|
|
|
|
'Foo::Bar' => [@store1],
|
|
|
|
'Foo::Baz' => [@store1, @store2],
|
|
|
|
'Inc' => [@store1],
|
|
|
|
}
|
|
|
|
|
|
|
|
assert_equal expected, @driver.classes
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_complete
|
|
|
|
store = RDoc::RI::Store.new @home_ri
|
|
|
|
store.cache[:ancestors] = {
|
|
|
|
'Foo' => %w[Object],
|
|
|
|
'Foo::Bar' => %w[Object],
|
|
|
|
}
|
|
|
|
store.cache[:class_methods] = {
|
|
|
|
'Foo' => %w[bar]
|
|
|
|
}
|
|
|
|
store.cache[:instance_methods] = {
|
|
|
|
'Foo' => %w[Bar]
|
|
|
|
}
|
|
|
|
store.cache[:modules] = %w[
|
|
|
|
Foo
|
|
|
|
Foo::Bar
|
|
|
|
]
|
|
|
|
|
|
|
|
@driver.stores = [store]
|
|
|
|
|
2011-05-13 20:39:16 -04:00
|
|
|
assert_equal %w[Foo ], @driver.complete('F')
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal %w[ Foo::Bar], @driver.complete('Foo::B')
|
|
|
|
|
2011-05-13 20:39:16 -04:00
|
|
|
assert_equal %w[Foo#Bar], @driver.complete('Foo#'), 'Foo#'
|
|
|
|
assert_equal %w[Foo#Bar Foo::bar], @driver.complete('Foo.'), 'Foo.'
|
|
|
|
assert_equal %w[Foo::Bar Foo::bar], @driver.complete('Foo::'), 'Foo::'
|
|
|
|
|
|
|
|
assert_equal %w[ Foo::bar], @driver.complete('Foo::b'), 'Foo::b'
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_complete_ancestor
|
|
|
|
util_ancestors_store
|
|
|
|
|
|
|
|
assert_equal %w[Foo::Bar#i_method], @driver.complete('Foo::Bar#')
|
|
|
|
|
|
|
|
assert_equal %w[Foo::Bar#i_method Foo::Bar::c_method Foo::Bar::new],
|
|
|
|
@driver.complete('Foo::Bar.')
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_complete_classes
|
|
|
|
util_store
|
|
|
|
|
2011-06-16 00:59:24 -04:00
|
|
|
assert_equal %w[ ], @driver.complete('[')
|
|
|
|
assert_equal %w[ ], @driver.complete('[::')
|
2011-05-13 20:39:16 -04:00
|
|
|
assert_equal %w[Foo ], @driver.complete('F')
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal %w[Foo:: Foo::Bar Foo::Baz], @driver.complete('Foo::')
|
|
|
|
assert_equal %w[ Foo::Bar Foo::Baz], @driver.complete('Foo::B')
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_complete_multistore
|
|
|
|
util_multi_store
|
|
|
|
|
|
|
|
assert_equal %w[Bar], @driver.complete('B')
|
2011-05-13 20:39:16 -04:00
|
|
|
assert_equal %w[Foo], @driver.complete('F')
|
|
|
|
assert_equal %w[Foo::Bar Foo::Baz], @driver.complete('Foo::B')
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_display
|
|
|
|
doc = @RM::Document.new(
|
|
|
|
@RM::Paragraph.new('hi'))
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
out, = capture_io do
|
2010-04-01 03:45:16 -04:00
|
|
|
@driver.display doc
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal "hi\n", out
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_display_class
|
|
|
|
util_store
|
2008-07-17 20:46:16 -04:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
out, = capture_io do
|
2010-04-01 03:45:16 -04:00
|
|
|
@driver.display_class 'Foo::Bar'
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match %r%^= Foo::Bar%, out
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_match %r%^\(from%, out
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
assert_match %r%^= Class methods:%, out
|
|
|
|
assert_match %r%^ new%, out
|
|
|
|
assert_match %r%^= Instance methods:%, out
|
|
|
|
assert_match %r%^ blah%, out
|
|
|
|
assert_match %r%^= Attributes:%, out
|
|
|
|
assert_match %r%^ attr_accessor attr%, out
|
|
|
|
|
|
|
|
assert_equal 1, out.scan(/-\n/).length
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_display_class_ambiguous
|
|
|
|
util_multi_store
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
out, = capture_io do
|
2010-04-01 03:45:16 -04:00
|
|
|
@driver.display_class 'Ambiguous'
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_match %r%^= Ambiguous < Object$%, out
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_display_class_multi_no_doc
|
|
|
|
util_multi_store
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
out, = capture_io do
|
2010-04-01 03:45:16 -04:00
|
|
|
@driver.display_class 'Foo::Baz'
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_match %r%^= Foo::Baz%, out
|
|
|
|
assert_match %r%-\n%, out
|
|
|
|
assert_match %r%Also found in:%, out
|
|
|
|
assert_match %r%#{Regexp.escape @home_ri}%, out
|
|
|
|
assert_match %r%#{Regexp.escape @home_ri2}%, out
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_display_class_superclass
|
|
|
|
util_multi_store
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
out, = capture_io do
|
2010-04-01 03:45:16 -04:00
|
|
|
@driver.display_class 'Bar'
|
|
|
|
end
|
2008-07-17 20:46:16 -04:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_match %r%^= Bar < Foo%, out
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_display_class_module
|
|
|
|
util_store
|
2008-07-17 20:46:16 -04:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
out, = capture_io do
|
2010-04-01 03:45:16 -04:00
|
|
|
@driver.display_class 'Inc'
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match %r%^= Inc$%, out
|
|
|
|
end
|
2008-07-17 20:46:16 -04:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_display_method
|
|
|
|
util_store
|
2008-07-17 20:46:16 -04:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
out, = capture_io do
|
2010-04-01 03:45:16 -04:00
|
|
|
@driver.display_method 'Foo::Bar#blah'
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match %r%Foo::Bar#blah%, out
|
|
|
|
assert_match %r%blah.5%, out
|
|
|
|
assert_match %r%blah.6%, out
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_display_method_attribute
|
|
|
|
util_store
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
out, = capture_io do
|
2010-04-01 03:45:16 -04:00
|
|
|
@driver.display_method 'Foo::Bar#attr'
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match %r%Foo::Bar#attr%, out
|
|
|
|
refute_match %r%Implementation from%, out
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_display_method_inherited
|
|
|
|
util_multi_store
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
out, = capture_io do
|
2010-04-01 03:45:16 -04:00
|
|
|
@driver.display_method 'Bar#inherit'
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match %r%^= Bar#inherit%, out
|
|
|
|
assert_match %r%^=== Implementation from Foo%, out
|
|
|
|
end
|
|
|
|
|
2011-02-01 19:32:30 -05:00
|
|
|
def test_display_method_overriden
|
|
|
|
util_multi_store
|
|
|
|
|
|
|
|
out, = capture_io do
|
|
|
|
@driver.display_method 'Bar#override'
|
|
|
|
end
|
|
|
|
|
|
|
|
refute_match %r%must not be displayed%, out
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_display_name_not_found_class
|
|
|
|
util_store
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
out, = capture_io do
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal false, @driver.display_name('Foo::B')
|
|
|
|
end
|
|
|
|
|
|
|
|
expected = <<-EXPECTED
|
|
|
|
Foo::B not found, maybe you meant:
|
|
|
|
|
|
|
|
Foo::Bar
|
|
|
|
Foo::Baz
|
|
|
|
EXPECTED
|
|
|
|
|
|
|
|
assert_equal expected, out
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_display_name_not_found_method
|
|
|
|
util_store
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
out, = capture_io do
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal false, @driver.display_name('Foo::Bar#b')
|
|
|
|
end
|
|
|
|
|
|
|
|
expected = <<-EXPECTED
|
|
|
|
Foo::Bar#b not found, maybe you meant:
|
|
|
|
|
|
|
|
Foo::Bar#blah
|
|
|
|
Foo::Bar#bother
|
|
|
|
EXPECTED
|
|
|
|
|
|
|
|
assert_equal expected, out
|
|
|
|
end
|
|
|
|
|
2010-04-10 02:36:13 -04:00
|
|
|
def test_display_method_params
|
|
|
|
util_store
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
out, = capture_io do
|
2010-04-10 02:36:13 -04:00
|
|
|
@driver.display_method 'Foo::Bar#bother'
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_match %r%things.*stuff%, out
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_expand_class
|
|
|
|
util_store
|
|
|
|
|
|
|
|
assert_equal 'Foo', @driver.expand_class('F')
|
|
|
|
assert_equal 'Foo::Bar', @driver.expand_class('F::Bar')
|
|
|
|
|
|
|
|
assert_raises RDoc::RI::Driver::NotFoundError do
|
|
|
|
@driver.expand_class 'F::B'
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_expand_name
|
|
|
|
util_store
|
2008-07-17 20:46:16 -04:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal '.b', @driver.expand_name('b')
|
|
|
|
assert_equal 'Foo', @driver.expand_name('F')
|
|
|
|
assert_equal 'Foo::Bar#', @driver.expand_name('F::Bar#')
|
|
|
|
|
|
|
|
e = assert_raises RDoc::RI::Driver::NotFoundError do
|
|
|
|
@driver.expand_name 'Z'
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal 'Z', e.name
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_find_methods
|
|
|
|
util_store
|
|
|
|
|
|
|
|
items = []
|
|
|
|
|
|
|
|
@driver.find_methods 'Foo::Bar.' do |store, klass, ancestor, types, method|
|
|
|
|
items << [store, klass, ancestor, types, method]
|
|
|
|
end
|
|
|
|
|
|
|
|
expected = [
|
|
|
|
[@store, 'Foo::Bar', 'Foo::Bar', :both, nil],
|
|
|
|
]
|
|
|
|
|
|
|
|
assert_equal expected, items
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_find_methods_method
|
|
|
|
util_store
|
|
|
|
|
|
|
|
items = []
|
|
|
|
|
|
|
|
@driver.find_methods '.blah' do |store, klass, ancestor, types, method|
|
|
|
|
items << [store, klass, ancestor, types, method]
|
|
|
|
end
|
|
|
|
|
|
|
|
expected = [
|
|
|
|
[@store, 'Ambiguous', 'Ambiguous', :both, 'blah'],
|
|
|
|
[@store, 'Foo', 'Foo', :both, 'blah'],
|
|
|
|
[@store, 'Foo::Bar', 'Foo::Bar', :both, 'blah'],
|
|
|
|
[@store, 'Foo::Baz', 'Foo::Baz', :both, 'blah'],
|
|
|
|
[@store, 'Inc', 'Inc', :both, 'blah'],
|
|
|
|
]
|
|
|
|
|
|
|
|
assert_equal expected, items
|
|
|
|
end
|
|
|
|
|
2011-02-01 19:32:30 -05:00
|
|
|
def test_filter_methods
|
|
|
|
util_multi_store
|
|
|
|
|
|
|
|
name = 'Bar#override'
|
|
|
|
|
|
|
|
found = @driver.load_methods_matching name
|
|
|
|
|
|
|
|
sorted = @driver.filter_methods found, name
|
|
|
|
|
|
|
|
expected = [[@store2, [@override]]]
|
|
|
|
|
|
|
|
assert_equal expected, sorted
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_filter_methods_not_found
|
|
|
|
util_multi_store
|
|
|
|
|
|
|
|
name = 'Bar#inherit'
|
|
|
|
|
|
|
|
found = @driver.load_methods_matching name
|
|
|
|
|
|
|
|
sorted = @driver.filter_methods found, name
|
|
|
|
|
|
|
|
assert_equal found, sorted
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_formatter
|
2010-12-19 22:22:49 -05:00
|
|
|
tty = Object.new
|
|
|
|
def tty.tty?() true; end
|
2010-07-10 22:09:09 -04:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
driver = RDoc::RI::Driver.new
|
2010-07-10 22:09:09 -04:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_instance_of @RM::ToAnsi, driver.formatter(tty)
|
2010-06-28 09:16:17 -04:00
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_instance_of @RM::ToBs, driver.formatter(StringIO.new)
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
driver.instance_variable_set :@paging, true
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_instance_of @RM::ToBs, driver.formatter(StringIO.new)
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
driver.instance_variable_set :@formatter_klass, @RM::ToHtml
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
assert_instance_of @RM::ToHtml, driver.formatter(tty)
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_in_path_eh
|
|
|
|
path = ENV['PATH']
|
|
|
|
|
|
|
|
refute @driver.in_path?('/nonexistent')
|
|
|
|
|
|
|
|
ENV['PATH'] = File.expand_path '..', __FILE__
|
|
|
|
|
|
|
|
assert @driver.in_path?(File.basename(__FILE__))
|
|
|
|
ensure
|
|
|
|
ENV['PATH'] = path
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def test_method_type
|
|
|
|
assert_equal :both, @driver.method_type(nil)
|
|
|
|
assert_equal :both, @driver.method_type('.')
|
|
|
|
assert_equal :instance, @driver.method_type('#')
|
|
|
|
assert_equal :class, @driver.method_type('::')
|
|
|
|
end
|
|
|
|
|
2011-02-01 19:32:30 -05:00
|
|
|
def test_name_regexp
|
|
|
|
assert_equal %r%^RDoc::AnyMethod#new$%,
|
|
|
|
@driver.name_regexp('RDoc::AnyMethod#new')
|
2011-05-13 20:39:16 -04:00
|
|
|
|
2011-02-01 19:32:30 -05:00
|
|
|
assert_equal %r%^RDoc::AnyMethod::new$%,
|
|
|
|
@driver.name_regexp('RDoc::AnyMethod::new')
|
|
|
|
|
|
|
|
assert_equal %r%^RDoc::AnyMethod(#|::)new$%,
|
|
|
|
@driver.name_regexp('RDoc::AnyMethod.new')
|
2011-05-13 20:39:16 -04:00
|
|
|
|
|
|
|
assert_equal %r%^Hash(#|::)\[\]$%,
|
|
|
|
@driver.name_regexp('Hash.[]')
|
|
|
|
|
|
|
|
assert_equal %r%^Hash::\[\]$%,
|
|
|
|
@driver.name_regexp('Hash::[]')
|
2011-02-01 19:32:30 -05:00
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_list_known_classes
|
|
|
|
util_store
|
|
|
|
|
2010-12-19 22:22:49 -05:00
|
|
|
out, = capture_io do
|
|
|
|
@driver.list_known_classes
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal "Ambiguous\nFoo\nFoo::Bar\nFoo::Baz\nInc\n", out
|
|
|
|
end
|
|
|
|
|
2011-05-13 20:39:16 -04:00
|
|
|
def test_list_known_classes_name
|
|
|
|
util_store
|
|
|
|
|
|
|
|
out, = capture_io do
|
|
|
|
@driver.list_known_classes %w[F I]
|
|
|
|
end
|
|
|
|
|
|
|
|
assert_equal "Foo\nFoo::Bar\nFoo::Baz\nInc\n", out
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_list_methods_matching
|
|
|
|
util_store
|
|
|
|
|
|
|
|
assert_equal %w[Foo::Bar#attr Foo::Bar#blah Foo::Bar#bother Foo::Bar::new],
|
|
|
|
@driver.list_methods_matching('Foo::Bar.')
|
|
|
|
end
|
|
|
|
|
2011-05-13 20:39:16 -04:00
|
|
|
def test_list_methods_matching_regexp
|
|
|
|
util_store
|
|
|
|
|
|
|
|
index = RDoc::AnyMethod.new nil, '[]'
|
2011-06-16 00:59:24 -04:00
|
|
|
index.record_location @top_level
|
2011-05-13 20:39:16 -04:00
|
|
|
@cFoo.add_method index
|
|
|
|
@store.save_method @cFoo, index
|
|
|
|
|
|
|
|
c_index = RDoc::AnyMethod.new nil, '[]'
|
|
|
|
c_index.singleton = true
|
2011-06-16 00:59:24 -04:00
|
|
|
c_index.record_location @top_level
|
2011-05-13 20:39:16 -04:00
|
|
|
@cFoo.add_method c_index
|
|
|
|
@store.save_method @cFoo, c_index
|
|
|
|
|
|
|
|
@store.save_cache
|
|
|
|
|
|
|
|
assert_equal %w[Foo#[]], @driver.list_methods_matching('Foo#[]')
|
|
|
|
assert_equal %w[Foo::[]], @driver.list_methods_matching('Foo::[]')
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_load_method
|
|
|
|
util_store
|
|
|
|
|
|
|
|
method = @driver.load_method(@store, :instance_methods, 'Foo', '#',
|
|
|
|
'inherit')
|
|
|
|
|
|
|
|
assert_equal @inherit, method
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_load_method_inherited
|
|
|
|
util_multi_store
|
|
|
|
|
|
|
|
method = @driver.load_method(@store2, :instance_methods, 'Bar', '#',
|
|
|
|
'inherit')
|
|
|
|
|
|
|
|
assert_equal nil, method
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_load_methods_matching
|
|
|
|
util_store
|
|
|
|
|
|
|
|
expected = [[@store, [@inherit]]]
|
|
|
|
|
|
|
|
assert_equal expected, @driver.load_methods_matching('Foo#inherit')
|
|
|
|
|
|
|
|
expected = [[@store, [@blah]]]
|
|
|
|
|
|
|
|
assert_equal expected, @driver.load_methods_matching('.blah')
|
|
|
|
|
|
|
|
assert_empty @driver.load_methods_matching('.b')
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_load_methods_matching_inherited
|
|
|
|
util_multi_store
|
|
|
|
|
|
|
|
expected = [[@store1, [@inherit]]]
|
|
|
|
|
|
|
|
assert_equal expected, @driver.load_methods_matching('Bar#inherit')
|
|
|
|
end
|
|
|
|
|
2010-05-01 01:06:21 -04:00
|
|
|
def _test_page # this test doesn't do anything anymore :(
|
2010-04-01 03:45:16 -04:00
|
|
|
@driver.use_stdout = false
|
|
|
|
|
2010-04-02 02:26:24 -04:00
|
|
|
with_dummy_pager do
|
|
|
|
@driver.page do |io|
|
|
|
|
skip "couldn't find a standard pager" if io == $stdout
|
2010-04-01 03:45:16 -04:00
|
|
|
|
2010-04-02 02:26:24 -04:00
|
|
|
assert @driver.paging?
|
|
|
|
end
|
2010-04-01 03:45:16 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
refute @driver.paging?
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_page_stdout
|
|
|
|
@driver.use_stdout = true
|
|
|
|
|
|
|
|
@driver.page do |io|
|
|
|
|
assert_equal $stdout, io
|
|
|
|
end
|
|
|
|
|
|
|
|
refute @driver.paging?
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_name_method
|
|
|
|
klass, type, meth = @driver.parse_name 'foo'
|
|
|
|
|
|
|
|
assert_equal '', klass, 'foo class'
|
|
|
|
assert_equal '.', type, 'foo type'
|
|
|
|
assert_equal 'foo', meth, 'foo method'
|
|
|
|
|
|
|
|
klass, type, meth = @driver.parse_name '#foo'
|
|
|
|
|
|
|
|
assert_equal '', klass, '#foo class'
|
|
|
|
assert_equal '#', type, '#foo type'
|
|
|
|
assert_equal 'foo', meth, '#foo method'
|
|
|
|
|
|
|
|
klass, type, meth = @driver.parse_name '::foo'
|
|
|
|
|
|
|
|
assert_equal '', klass, '::foo class'
|
|
|
|
assert_equal '::', type, '::foo type'
|
|
|
|
assert_equal 'foo', meth, '::foo method'
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_name_single_class
|
|
|
|
klass, type, meth = @driver.parse_name 'Foo'
|
|
|
|
|
|
|
|
assert_equal 'Foo', klass, 'Foo class'
|
|
|
|
assert_equal nil, type, 'Foo type'
|
|
|
|
assert_equal nil, meth, 'Foo method'
|
|
|
|
|
|
|
|
klass, type, meth = @driver.parse_name 'Foo#'
|
|
|
|
|
|
|
|
assert_equal 'Foo', klass, 'Foo# class'
|
|
|
|
assert_equal '#', type, 'Foo# type'
|
|
|
|
assert_equal nil, meth, 'Foo# method'
|
|
|
|
|
|
|
|
klass, type, meth = @driver.parse_name 'Foo::'
|
|
|
|
|
|
|
|
assert_equal 'Foo', klass, 'Foo:: class'
|
|
|
|
assert_equal '::', type, 'Foo:: type'
|
|
|
|
assert_equal nil, meth, 'Foo:: method'
|
|
|
|
|
|
|
|
klass, type, meth = @driver.parse_name 'Foo.'
|
|
|
|
|
|
|
|
assert_equal 'Foo', klass, 'Foo. class'
|
|
|
|
assert_equal '.', type, 'Foo. type'
|
|
|
|
assert_equal nil, meth, 'Foo. method'
|
|
|
|
|
|
|
|
klass, type, meth = @driver.parse_name 'Foo#Bar'
|
2008-07-17 20:46:16 -04:00
|
|
|
|
|
|
|
assert_equal 'Foo', klass, 'Foo#Bar class'
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal '#', type, 'Foo#Bar type'
|
2008-07-17 20:46:16 -04:00
|
|
|
assert_equal 'Bar', meth, 'Foo#Bar method'
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
klass, type, meth = @driver.parse_name 'Foo.Bar'
|
|
|
|
|
|
|
|
assert_equal 'Foo', klass, 'Foo.Bar class'
|
|
|
|
assert_equal '.', type, 'Foo.Bar type'
|
|
|
|
assert_equal 'Bar', meth, 'Foo.Bar method'
|
|
|
|
|
|
|
|
klass, type, meth = @driver.parse_name 'Foo::bar'
|
2008-07-17 20:46:16 -04:00
|
|
|
|
|
|
|
assert_equal 'Foo', klass, 'Foo::bar class'
|
2010-04-01 03:45:16 -04:00
|
|
|
assert_equal '::', type, 'Foo::bar type'
|
2008-07-17 20:46:16 -04:00
|
|
|
assert_equal 'bar', meth, 'Foo::bar method'
|
|
|
|
end
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
def test_parse_name_namespace
|
|
|
|
klass, type, meth = @driver.parse_name 'Foo::Bar'
|
|
|
|
|
|
|
|
assert_equal 'Foo::Bar', klass, 'Foo::Bar class'
|
|
|
|
assert_equal nil, type, 'Foo::Bar type'
|
|
|
|
assert_equal nil, meth, 'Foo::Bar method'
|
|
|
|
|
|
|
|
klass, type, meth = @driver.parse_name 'Foo::Bar#'
|
|
|
|
|
|
|
|
assert_equal 'Foo::Bar', klass, 'Foo::Bar# class'
|
|
|
|
assert_equal '#', type, 'Foo::Bar# type'
|
|
|
|
assert_equal nil, meth, 'Foo::Bar# method'
|
|
|
|
|
|
|
|
klass, type, meth = @driver.parse_name 'Foo::Bar#baz'
|
|
|
|
|
|
|
|
assert_equal 'Foo::Bar', klass, 'Foo::Bar#baz class'
|
|
|
|
assert_equal '#', type, 'Foo::Bar#baz type'
|
|
|
|
assert_equal 'baz', meth, 'Foo::Bar#baz method'
|
|
|
|
end
|
|
|
|
|
2010-05-01 01:06:21 -04:00
|
|
|
def _test_setup_pager # this test doesn't do anything anymore :(
|
2010-04-01 03:45:16 -04:00
|
|
|
@driver.use_stdout = false
|
|
|
|
|
2010-04-10 02:36:13 -04:00
|
|
|
pager = with_dummy_pager do @driver.setup_pager end
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
skip "couldn't find a standard pager" unless pager
|
|
|
|
|
|
|
|
assert @driver.paging?
|
|
|
|
ensure
|
|
|
|
pager.close if pager
|
|
|
|
end
|
|
|
|
|
|
|
|
def util_ancestors_store
|
|
|
|
store1 = RDoc::RI::Store.new @home_ri
|
|
|
|
store1.cache[:ancestors] = {
|
|
|
|
'Foo' => %w[Object],
|
|
|
|
'Foo::Bar' => %w[Foo],
|
|
|
|
}
|
|
|
|
store1.cache[:class_methods] = {
|
|
|
|
'Foo' => %w[c_method new],
|
|
|
|
'Foo::Bar' => %w[new],
|
|
|
|
}
|
|
|
|
store1.cache[:instance_methods] = {
|
|
|
|
'Foo' => %w[i_method],
|
|
|
|
}
|
|
|
|
store1.cache[:modules] = %w[
|
|
|
|
Foo
|
|
|
|
Foo::Bar
|
|
|
|
]
|
|
|
|
|
|
|
|
store2 = RDoc::RI::Store.new @home_ri
|
|
|
|
store2.cache[:ancestors] = {
|
|
|
|
'Foo' => %w[Mixin Object],
|
|
|
|
'Mixin' => %w[],
|
|
|
|
'Object' => %w[X Object],
|
|
|
|
'X' => %w[Object],
|
|
|
|
}
|
|
|
|
store2.cache[:class_methods] = {
|
|
|
|
'Foo' => %w[c_method new],
|
|
|
|
'Mixin' => %w[],
|
|
|
|
'X' => %w[],
|
|
|
|
'Object' => %w[],
|
|
|
|
}
|
|
|
|
store2.cache[:instance_methods] = {
|
|
|
|
'Foo' => %w[i_method],
|
|
|
|
'Mixin' => %w[],
|
|
|
|
}
|
|
|
|
store2.cache[:modules] = %w[
|
|
|
|
Foo
|
|
|
|
Mixin
|
|
|
|
Object
|
|
|
|
X
|
|
|
|
]
|
|
|
|
|
|
|
|
@driver.stores = store1, store2
|
|
|
|
end
|
|
|
|
|
|
|
|
def util_multi_store
|
|
|
|
util_store
|
|
|
|
@store1 = @store
|
|
|
|
|
|
|
|
@home_ri2 = "#{@home_ri}2"
|
|
|
|
@store2 = RDoc::RI::Store.new @home_ri2
|
|
|
|
|
|
|
|
# as if seen in a namespace like class Ambiguous::Other
|
|
|
|
@mAmbiguous = RDoc::NormalModule.new 'Ambiguous'
|
|
|
|
|
|
|
|
@cFoo = RDoc::NormalClass.new 'Foo'
|
2011-02-01 19:32:30 -05:00
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
@cBar = RDoc::NormalClass.new 'Bar'
|
|
|
|
@cBar.superclass = 'Foo'
|
|
|
|
@cFoo_Baz = RDoc::NormalClass.new 'Baz'
|
|
|
|
@cFoo_Baz.parent = @cFoo
|
|
|
|
|
|
|
|
@baz = RDoc::AnyMethod.new nil, 'baz'
|
2011-06-16 00:59:24 -04:00
|
|
|
@baz.record_location @top_level
|
2010-04-01 03:45:16 -04:00
|
|
|
@cBar.add_method @baz
|
|
|
|
|
2011-02-01 19:32:30 -05:00
|
|
|
@override = RDoc::AnyMethod.new nil, 'override'
|
|
|
|
@override.comment = 'must be displayed'
|
2011-06-16 00:59:24 -04:00
|
|
|
@override.record_location @top_level
|
2011-02-01 19:32:30 -05:00
|
|
|
@cBar.add_method @override
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
@store2.save_class @mAmbiguous
|
|
|
|
@store2.save_class @cBar
|
|
|
|
@store2.save_class @cFoo_Baz
|
|
|
|
|
2011-02-01 19:32:30 -05:00
|
|
|
@store2.save_method @cBar, @override
|
2010-04-01 03:45:16 -04:00
|
|
|
@store2.save_method @cBar, @baz
|
|
|
|
|
|
|
|
@store2.save_cache
|
|
|
|
|
|
|
|
@driver.stores = [@store1, @store2]
|
|
|
|
end
|
|
|
|
|
|
|
|
def util_store
|
|
|
|
@store = RDoc::RI::Store.new @home_ri
|
|
|
|
|
2011-06-16 00:59:24 -04:00
|
|
|
@top_level = RDoc::TopLevel.new 'file.rb'
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
@cFoo = RDoc::NormalClass.new 'Foo'
|
|
|
|
@mInc = RDoc::NormalModule.new 'Inc'
|
|
|
|
@cAmbiguous = RDoc::NormalClass.new 'Ambiguous'
|
|
|
|
|
|
|
|
doc = @RM::Document.new @RM::Paragraph.new('Include thingy')
|
|
|
|
|
|
|
|
@cFooInc = RDoc::Include.new 'Inc', doc
|
2011-06-16 00:59:24 -04:00
|
|
|
@cFooInc.record_location @top_level
|
2010-04-01 03:45:16 -04:00
|
|
|
@cFoo.add_include @cFooInc
|
|
|
|
|
|
|
|
@cFoo_Bar = RDoc::NormalClass.new 'Bar'
|
|
|
|
@cFoo_Bar.parent = @cFoo
|
|
|
|
|
|
|
|
@blah = RDoc::AnyMethod.new nil, 'blah'
|
|
|
|
@blah.call_seq = "blah(5) => 5\nblah(6) => 6\n"
|
2011-06-16 00:59:24 -04:00
|
|
|
@blah.record_location @top_level
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
@bother = RDoc::AnyMethod.new nil, 'bother'
|
2010-04-10 02:36:13 -04:00
|
|
|
@bother.block_params = "stuff"
|
2011-06-16 00:59:24 -04:00
|
|
|
@bother.params = "(things)"
|
|
|
|
@bother.record_location @top_level
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
@new = RDoc::AnyMethod.new nil, 'new'
|
2011-06-16 00:59:24 -04:00
|
|
|
@new.record_location @top_level
|
2010-04-01 03:45:16 -04:00
|
|
|
@new.singleton = true
|
|
|
|
|
|
|
|
@cFoo_Bar.add_method @blah
|
|
|
|
@cFoo_Bar.add_method @bother
|
|
|
|
@cFoo_Bar.add_method @new
|
|
|
|
|
|
|
|
@attr = RDoc::Attr.new nil, 'attr', 'RW', ''
|
2011-06-16 00:59:24 -04:00
|
|
|
@attr.record_location @top_level
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
@cFoo_Bar.add_attribute @attr
|
|
|
|
|
|
|
|
@cFoo_Baz = RDoc::NormalClass.new 'Baz'
|
|
|
|
@cFoo_Baz.parent = @cFoo
|
|
|
|
|
|
|
|
@inherit = RDoc::AnyMethod.new nil, 'inherit'
|
2011-06-16 00:59:24 -04:00
|
|
|
@inherit.record_location @top_level
|
2010-04-01 03:45:16 -04:00
|
|
|
@cFoo.add_method @inherit
|
|
|
|
|
2011-02-01 19:32:30 -05:00
|
|
|
# overriden by Bar in multi_store
|
|
|
|
@overriden = RDoc::AnyMethod.new nil, 'override'
|
|
|
|
@overriden.comment = 'must not be displayed'
|
2011-06-16 00:59:24 -04:00
|
|
|
@overriden.record_location @top_level
|
2011-02-01 19:32:30 -05:00
|
|
|
@cFoo.add_method @overriden
|
|
|
|
|
2010-04-01 03:45:16 -04:00
|
|
|
@store.save_class @cFoo
|
|
|
|
@store.save_class @cFoo_Bar
|
|
|
|
@store.save_class @cFoo_Baz
|
|
|
|
@store.save_class @mInc
|
|
|
|
@store.save_class @cAmbiguous
|
|
|
|
|
|
|
|
@store.save_method @cFoo_Bar, @blah
|
|
|
|
@store.save_method @cFoo_Bar, @bother
|
|
|
|
@store.save_method @cFoo_Bar, @new
|
|
|
|
@store.save_method @cFoo_Bar, @attr
|
|
|
|
|
|
|
|
@store.save_method @cFoo, @inherit
|
2011-02-01 19:32:30 -05:00
|
|
|
@store.save_method @cFoo, @overriden
|
2010-04-01 03:45:16 -04:00
|
|
|
|
|
|
|
@store.save_cache
|
|
|
|
|
|
|
|
@driver.stores = [@store]
|
|
|
|
end
|
|
|
|
|
2008-07-17 20:46:16 -04:00
|
|
|
end
|
|
|
|
|