summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2005-04-15 20:09:07 +0000
committerLuke Kanies <luke@madstop.com>2005-04-15 20:09:07 +0000
commit3904d2efd505fec08de3c4e8e7ab6d14586aed7e (patch)
tree44f211e5d548037f5f1ff98289273edd09ac898f /test
parent13f16b6690224758706e1c68d1da577a13df8be5 (diff)
downloadpuppet-3904d2efd505fec08de3c4e8e7ab6d14586aed7e.tar.gz
puppet-3904d2efd505fec08de3c4e8e7ab6d14586aed7e.tar.xz
puppet-3904d2efd505fec08de3c4e8e7ab6d14586aed7e.zip
fixing most of the function call stuff
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@167 980ebf18-57e1-0310-9a29-db15c13687c0
Diffstat (limited to 'test')
-rw-r--r--test/blinktest.rb3
-rw-r--r--test/client/tc_client.rb3
-rw-r--r--test/other/tc_fact.rb28
3 files changed, 33 insertions, 1 deletions
diff --git a/test/blinktest.rb b/test/blinktest.rb
index 1804f48e1..f44167486 100644
--- a/test/blinktest.rb
+++ b/test/blinktest.rb
@@ -46,7 +46,8 @@ unless defined? BlinkTestSuite
File.join(textdir,file)
}.find_all { |file|
FileTest.file?(file)
- }.each { |file|
+ }.sort.each { |file|
+ puts "Processing %s" % file
yield file
}
end
diff --git a/test/client/tc_client.rb b/test/client/tc_client.rb
index e7cbd6ef9..21d308e04 100644
--- a/test/client/tc_client.rb
+++ b/test/client/tc_client.rb
@@ -27,4 +27,7 @@ class TestClient < Test::Unit::TestCase
)
}
end
+
+ def test_files
+ end
end
diff --git a/test/other/tc_fact.rb b/test/other/tc_fact.rb
new file mode 100644
index 000000000..c1aaafa72
--- /dev/null
+++ b/test/other/tc_fact.rb
@@ -0,0 +1,28 @@
+if __FILE__ == $0
+ $:.unshift '..'
+ $:.unshift '../../lib'
+ $blinkbase = "../.."
+end
+
+require 'blink/fact'
+require 'test/unit'
+
+# $Id$
+
+class TestFacts < Test::Unit::TestCase
+ def test_newfact
+ Blink[:debug] = true if __FILE__ == $0
+ fact = nil
+ assert_nothing_raised() {
+ fact = Blink::Fact.new(
+ :name => "funtest",
+ :code => "echo funtest",
+ :interpreter => "/bin/sh"
+ )
+ }
+ assert_equal(
+ "funtest",
+ Blink::Fact["funtest"]
+ )
+ end
+end