File: run-test.rb

package info (click to toggle)
ruby-pkg-config 1.5.9-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 188 kB
  • sloc: ruby: 858; makefile: 4
file content (13 lines) | stat: -rwxr-xr-x 272 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env ruby

$VERBOSE = true

base_dir = File.expand_path(File.join(File.dirname(__FILE__), ".."))
lib_dir = File.join(base_dir, "lib")
test_dir = File.join(base_dir, "test")

require 'test-unit'

$LOAD_PATH.unshift(lib_dir)

exit Test::Unit::AutoRunner.run(true)