summaryrefslogtreecommitdiff
path: root/trunk/test/ripper/test_files.rb
diff options
context:
space:
mode:
Diffstat (limited to 'trunk/test/ripper/test_files.rb')
-rw-r--r--trunk/test/ripper/test_files.rb25
1 files changed, 25 insertions, 0 deletions
diff --git a/trunk/test/ripper/test_files.rb b/trunk/test/ripper/test_files.rb
new file mode 100644
index 0000000000..c2d7a50a3f
--- /dev/null
+++ b/trunk/test/ripper/test_files.rb
@@ -0,0 +1,25 @@
+begin
+
+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)
+ assert_nothing_raised("ripper failed to parse: #{n.inspect}") { Parser.new(File.read(n)).parse }
+ }
+ end
+end
+
+rescue LoadError
+end
+