summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2005-06-27 21:48:39 +0000
committerLuke Kanies <luke@madstop.com>2005-06-27 21:48:39 +0000
commitcd48af7eb031b839cf326305c224e2ff000cd3ab (patch)
tree6ca53bdf31a1edc4dec816d1265a388bacb77eae /test
parent60783f0777eb5dd89d44a8dfd2ced49f06a32d8f (diff)
downloadpuppet-cd48af7eb031b839cf326305c224e2ff000cd3ab.tar.gz
puppet-cd48af7eb031b839cf326305c224e2ff000cd3ab.tar.xz
puppet-cd48af7eb031b839cf326305c224e2ff000cd3ab.zip
renaming blink to puppet
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@306 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'test')
-rw-r--r--test/puppetest.rb (renamed from test/blinktest.rb)0
-rwxr-xr-xtest/test10
2 files changed, 5 insertions, 5 deletions
diff --git a/test/blinktest.rb b/test/puppetest.rb
index a20e35079..a20e35079 100644
--- a/test/blinktest.rb
+++ b/test/puppetest.rb
diff --git a/test/test b/test/test
index 14301cf4c..0ded96f9b 100755
--- a/test/test
+++ b/test/test
@@ -9,12 +9,12 @@ $:.unshift '.'
$:.unshift '../lib'
# if we're not in the library trunk, then add that to the lib search path
-if Dir.getwd !~ %r{blink/library}
+if Dir.getwd !~ %r{puppet/library}
$:.unshift '../../../library/trunk/lib/'
$:.unshift '../../../library/trunk/test/'
end
-require 'blinktest.rb'
+require 'puppetest.rb'
require 'getoptlong'
@@ -35,16 +35,16 @@ result.each { |opt,arg|
end
}
-$blinkbase = "../../../language/trunk"
+$puppetbase = "../../../language/trunk"
suites = nil
if ARGV.length != 0
suites = ARGV
else
- suites = BlinkTestSuite.list
+ suites = PuppetTestSuite.list
end
suites.each { |suite|
- BlinkTestSuite.new(suite)
+ PuppetTestSuite.new(suite)
}