2006-12-31 10:02:22 -05:00
|
|
|
begin
|
|
|
|
|
2005-09-06 02:17:56 -04:00
|
|
|
require 'ripper'
|
|
|
|
require 'find'
|
|
|
|
require 'test/unit'
|
|
|
|
|
|
|
|
class TestRipper_Generic < Test::Unit::TestCase
|
|
|
|
SRCDIR = File.dirname(File.dirname(File.dirname(File.expand_path(__FILE__))))
|
|
|
|
|
|
|
|
class Parser < Ripper
|
|
|
|
PARSER_EVENTS.each {|n| eval "def on_#{n}(*args) r = [:#{n}, *args]; r.inspect; Object.new end" }
|
|
|
|
SCANNER_EVENTS.each {|n| eval "def on_#{n}(*args) r = [:#{n}, *args]; r.inspect; Object.new end" }
|
|
|
|
end
|
|
|
|
|
|
|
|
def test_parse_files
|
|
|
|
Find.find("#{SRCDIR}/lib", "#{SRCDIR}/ext", "#{SRCDIR}/sample", "#{SRCDIR}/test") {|n|
|
|
|
|
next if /\.rb\z/ !~ n || !File.file?(n)
|
2006-06-24 11:38:21 -04:00
|
|
|
assert_nothing_raised("ripper failed to parse: #{n.inspect}") { Parser.new(File.read(n)).parse }
|
2005-09-06 02:17:56 -04:00
|
|
|
}
|
|
|
|
end
|
|
|
|
end
|
2006-12-31 10:02:22 -05:00
|
|
|
|
|
|
|
rescue LoadError
|
|
|
|
end
|
2009-03-05 22:56:38 -05:00
|
|
|
|