mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 df7dac9174
			
		
	
	
		df7dac9174
		
	
	
	
	
		
			
			RDoc 4.1.0 contains a number of enhancements including a new default style and accessibility support. You can see the changelog here: https://github.com/rdoc/rdoc/blob/v4.1.0.preview.1/History.rdoc * test/rdoc: ditto. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42971 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			67 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
	
		
			1.8 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| ENV['RDOC_TEST'] = 'yes'
 | |
| 
 | |
| require 'rdoc'
 | |
| require File.expand_path '../xref_data', __FILE__
 | |
| 
 | |
| class XrefTestCase < RDoc::TestCase
 | |
| 
 | |
|   def setup
 | |
|     super
 | |
| 
 | |
|     @options = RDoc::Options.new
 | |
|     @options.quiet = true
 | |
| 
 | |
|     @rdoc.options = @options
 | |
| 
 | |
|     @file_name = 'xref_data.rb'
 | |
|     @xref_data = @store.add_file @file_name
 | |
|     @top_level = @xref_data
 | |
| 
 | |
|     stats = RDoc::Stats.new @store, 0
 | |
| 
 | |
|     parser = RDoc::Parser::Ruby.new @xref_data, @file_name, XREF_DATA, @options,
 | |
|                                     stats
 | |
|     @top_levels = []
 | |
|     @top_levels.push parser.scan
 | |
| 
 | |
|     generator = Object.new
 | |
|     def generator.class_dir() nil end
 | |
|     def generator.file_dir() nil end
 | |
|     @rdoc.options = @options
 | |
|     @rdoc.generator = generator
 | |
| 
 | |
|     @c1    = @xref_data.find_module_named 'C1'
 | |
|     @c1_m  = @c1.method_list.last  # C1#m
 | |
|     @c1__m = @c1.method_list.first # C1::m
 | |
| 
 | |
|     @c2    = @xref_data.find_module_named 'C2'
 | |
|     @c2_a  = @c2.method_list.last
 | |
|     @c2_b  = @c2.method_list.first
 | |
| 
 | |
|     @c2_c3 = @xref_data.find_module_named 'C2::C3'
 | |
|     @c2_c3_m = @c2_c3.method_list.first # C2::C3#m
 | |
| 
 | |
|     @c2_c3_h1 = @xref_data.find_module_named 'C2::C3::H1'
 | |
|     @c2_c3_h1_meh = @c2_c3_h1.method_list.first # C2::C3::H1#m?
 | |
| 
 | |
|     @c3    = @xref_data.find_module_named 'C3'
 | |
|     @c4    = @xref_data.find_module_named 'C4'
 | |
|     @c4_c4 = @xref_data.find_module_named 'C4::C4'
 | |
|     @c5_c1 = @xref_data.find_module_named 'C5::C1'
 | |
|     @c3_h1 = @xref_data.find_module_named 'C3::H1'
 | |
|     @c3_h2 = @xref_data.find_module_named 'C3::H2'
 | |
| 
 | |
|     @m1    = @xref_data.find_module_named 'M1'
 | |
|     @m1_m  = @m1.method_list.first
 | |
| 
 | |
|     @m1_m2 = @xref_data.find_module_named 'M1::M2'
 | |
| 
 | |
|     @parent = @xref_data.find_module_named 'Parent'
 | |
|     @child  = @xref_data.find_module_named 'Child'
 | |
| 
 | |
|     @parent_m  = @parent.method_list.first # Parent#m
 | |
|     @parent__m = @parent.method_list.last  # Parent::m
 | |
|   end
 | |
| 
 | |
| end
 | |
| 
 |