summaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
Diffstat (limited to 'test')
-rw-r--r--test/types/type.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/test/types/type.rb b/test/types/type.rb
index 929fc616e..e327a61a9 100644
--- a/test/types/type.rb
+++ b/test/types/type.rb
@@ -755,6 +755,17 @@ end
assert_equal(tags + [:file], obj.tags)
end
+
+ def disabled_test_list
+ Puppet::Type.loadall
+
+ Puppet::Type.eachtype do |type|
+ next if type.name == :symlink
+ next if type.name == :component
+ next if type.name == :tidy
+ assert(type.respond_to?(:list), "%s does not respond to list" % type.name)
+ end
+ end
end
# $Id$