summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLuke Kanies <luke@madstop.com>2005-06-09 16:36:20 +0000
committerLuke Kanies <luke@madstop.com>2005-06-09 16:36:20 +0000
commit3f0687b9dddb5bc52c538c64cc9226a0f0d84522 (patch)
tree75868155c6caf6acfaa154bed6ddd11c28549cd4
parent53240625be7d35dabe29a2e71d5ac99d6f996427 (diff)
downloadpuppet-3f0687b9dddb5bc52c538c64cc9226a0f0d84522.tar.gz
puppet-3f0687b9dddb5bc52c538c64cc9226a0f0d84522.tar.xz
puppet-3f0687b9dddb5bc52c538c64cc9226a0f0d84522.zip
updates
git-svn-id: https://reductivelabs.com/svn/puppet/library/trunk@295 980ebf18-57e1-0310-9a29-db15c13687c0
-rw-r--r--test/types/tc_package.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/test/types/tc_package.rb b/test/types/tc_package.rb
index 2b779454a..a5585fcb6 100644
--- a/test/types/tc_package.rb
+++ b/test/types/tc_package.rb
@@ -31,9 +31,11 @@ end
class TestPackageSource < Test::Unit::TestCase
def test_filesource
+ system("touch /tmp/fakepackage")
assert_equal(
"/tmp/fakepackage",
Blink::Type::PackageSource.get("file:///tmp/fakepackage")
)
+ system("rm -f /tmp/fakepackage")
end
end