summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2005-09-21 21:04:17 +0000
committerluke <luke@980ebf18-57e1-0310-9a29-db15c13687c0>2005-09-21 21:04:17 +0000
commitf7575561b52ad89b97bbf97b5487144339031099 (patch)
tree07e09c15a822d057f83ed3dfad6654ab7317cd13
parent5dc3cb04bebc79517ae5f64d1d3c652b6dfba7ea (diff)
downloadpuppet-f7575561b52ad89b97bbf97b5487144339031099.tar.gz
puppet-f7575561b52ad89b97bbf97b5487144339031099.tar.xz
puppet-f7575561b52ad89b97bbf97b5487144339031099.zip
converting tc_relationships.rb to the test base class
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@695 980ebf18-57e1-0310-9a29-db15c13687c0
-rwxr-xr-xtest/other/tc_relationships.rb20
1 files changed, 6 insertions, 14 deletions
diff --git a/test/other/tc_relationships.rb b/test/other/tc_relationships.rb
index 44960b569..c8927972b 100755
--- a/test/other/tc_relationships.rb
+++ b/test/other/tc_relationships.rb
@@ -1,18 +1,16 @@
if __FILE__ == $0
$:.unshift '..'
$:.unshift '../../lib'
- $puppetbase = "../../../../language/trunk"
+ $puppetbase = "../.."
end
require 'puppet'
+require 'puppettest'
require 'test/unit'
-# $Id$
-
-class TestRelationships < Test::Unit::TestCase
+class TestRelationships < TestPuppet
def setup
- Puppet[:loglevel] = :debug if __FILE__ == $0
-
+ super
@groups = %x{groups}.chomp.split(/ /)
unless @groups.length > 1
p @groups
@@ -20,14 +18,6 @@ class TestRelationships < Test::Unit::TestCase
end
end
- def teardown
- assert_nothing_raised() {
- Puppet::Type.allclear
- }
-
- print "\n\n" if Puppet[:debug]
- end
-
def newfile
assert_nothing_raised() {
cfile = File.join($puppetbase,"examples/root/etc/configfile")
@@ -72,3 +62,5 @@ class TestRelationships < Test::Unit::TestCase
def test_simplerel
end
end
+
+# $Id$