diff options
author | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-06-12 20:54:33 +0000 |
---|---|---|
committer | luke <luke@980ebf18-57e1-0310-9a29-db15c13687c0> | 2006-06-12 20:54:33 +0000 |
commit | 9af5d697385fd28843d1603e9e6afd272ec5e560 (patch) | |
tree | ad67ce96cc244a27d784d4a8d2459cf1ebe3a680 | |
parent | a6122e8d67ffc0165e8746150e6af7f53cb7be2d (diff) | |
download | puppet-9af5d697385fd28843d1603e9e6afd272ec5e560.tar.gz puppet-9af5d697385fd28843d1603e9e6afd272ec5e560.tar.xz puppet-9af5d697385fd28843d1603e9e6afd272ec5e560.zip |
adding nothing test to zone tests
git-svn-id: https://reductivelabs.com/svn/puppet/trunk@1255 980ebf18-57e1-0310-9a29-db15c13687c0
-rwxr-xr-x | test/types/zone.rb | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/test/types/zone.rb b/test/types/zone.rb index 44cc05033..f96ef81f0 100755 --- a/test/types/zone.rb +++ b/test/types/zone.rb @@ -15,6 +15,12 @@ require 'facter' class TestZone < Test::Unit::TestCase include TestPuppet + def test_nothing + end + + # Zones can only be tested on solaris. + if Facter["operatingsystem"].value == "Solaris" + def setup super @@zones = [] @@ -42,9 +48,6 @@ class TestZone < Test::Unit::TestCase super end - # Zones can only be tested on solaris. - if Facter["operatingsystem"].value == "Solaris" - def mkzone(name) zone = nil |