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, 0 insertions, 25 deletions
diff --git a/trunk/test/ripper/test_files.rb b/trunk/test/ripper/test_files.rb
deleted file mode 100644
index c2d7a50a3f..0000000000
--- a/trunk/test/ripper/test_files.rb
+++ /dev/null
@@ -1,25 +0,0 @@
-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
-