summaryrefslogtreecommitdiff
path: root/t
diff options
context:
space:
mode:
authorSteve Kemp <steve@steve.org.uk>2015-03-09 12:36:53 +0000
committerSteve Kemp <steve@steve.org.uk>2015-03-09 12:36:53 +0000
commit0e158a3b400c324e35e0617d04508f375a86c633 (patch)
tree863748360ca739d476956eaded84f3bd134dbe7e /t
parenta763bc51e8cee9a1ab972e39616275f527192454 (diff)
Use long-names
Instead of "$0" use $PROGRAM_NAME, instead of $! use "$LOAD_PATH". This is more explicit and less-magic. Flagged by rubocop
Diffstat (limited to 't')
-rwxr-xr-xt/test-suite2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/test-suite b/t/test-suite
index 9500052..02df298 100755
--- a/t/test-suite
+++ b/t/test-suite
@@ -11,7 +11,7 @@
#
base = File.dirname(__FILE__)
%w(bin lib .).each do |d|
- $: << File.expand_path(File.join(base, "../#{d}"))
+ $LOAD_PATH << File.expand_path(File.join(base, "../#{d}"))
end
require 'test/unit'