summaryrefslogtreecommitdiff
path: root/test/rss/test.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rss/test.rb')
-rw-r--r--test/rss/test.rb16
1 files changed, 0 insertions, 16 deletions
diff --git a/test/rss/test.rb b/test/rss/test.rb
deleted file mode 100644
index 3b462cc4a3..0000000000
--- a/test/rss/test.rb
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env ruby
-
-require "rbconfig"
-require "rss/parser"
-
-c = Config::CONFIG
-ruby = File.join(c['bindir'], c['ruby_install_name'])
-
-RSS::AVAILABLE_PARSERS.each do |parser|
- puts "------------------------------------"
- puts "Using #{parser}"
- puts "------------------------------------"
- Dir.glob(ARGV.shift || "test/test_*") do |file|
- puts(`#{ruby} #{if $DEBUG then '-d' end} -I. -I./lib test/each_parser.rb #{parser} #{file} #{ARGV.join(' ')}`)
- end
-end