dfect 2.1.0 → 2.2.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,25 +0,0 @@
1
- #!/usr/bin/env ruby
2
- #
3
- # Adds the project library directory
4
- # and this test directory to Ruby's
5
- # load path and runs the given tests.
6
- #
7
- # Usage: ruby test/runner [TESTS_TO_RUN]
8
- #
9
- # Where: TESTS_TO_RUN is a list of files
10
- # or file globbing patterns that
11
- # describe a set of files to run.
12
- #
13
- # If this parameter is not given,
14
- # all *_test.rb files within or
15
- # beneath this directory are run.
16
-
17
- lib_dir = File.expand_path('../../lib', __FILE__)
18
- test_dir = File.expand_path('..', __FILE__)
19
- $LOAD_PATH.unshift lib_dir, test_dir
20
-
21
- require 'dfect/inochi'
22
- require 'test_helper'
23
-
24
- ARGV << "#{test_dir}/**/*_test.rb" if ARGV.empty?
25
- ARGV.each {|glob| Dir[glob].each {|test| load test } }
@@ -1 +0,0 @@
1
- require 'dfect/auto'