From 1b71d745f75fbff5d0c7fd0c584b266e3b87e1b2 Mon Sep 17 00:00:00 2001 From: David Grayson Date: Mon, 21 Jan 2013 11:01:41 -0800 Subject: [PATCH] test/runner.rb: Got rid of arcane/broken Version and Release number. Added the lib directory to the load path. Now you can actually run the tests by running 'ruby test/runner.rb', but there are tons of errors. --- test/runner.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/test/runner.rb b/test/runner.rb index e0f00ee..f5edc95 100644 --- a/test/runner.rb +++ b/test/runner.rb @@ -1,7 +1,7 @@ require 'test/unit' -rcsid = %w$Id: runner.rb 1751 2007-05-02 08:15:55Z nahi $ -Version = rcsid[2].scan(/\d+/).collect!(&method(:Integer)).freeze -Release = rcsid[3].freeze +Version = Release = 0 # TODO: remove + +$LOAD_PATH << 'lib' exit Test::Unit::AutoRunner.run(true, File.dirname($0))