Skip to content

Commit

Permalink
test/runner.rb: Got rid of arcane/broken Version and Release number. …
Browse files Browse the repository at this point in the history
…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.
  • Loading branch information
DavidEGrayson committed Jan 21, 2013
1 parent 16b0784 commit 1b71d74
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions 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))

0 comments on commit 1b71d74

Please sign in to comment.