summaryrefslogtreecommitdiffstats
path: root/test/client/master.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/client/master.rb')
-rw-r--r--test/client/master.rb4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/client/master.rb b/test/client/master.rb
index 0a35a78c3..7e447b095 100644
--- a/test/client/master.rb
+++ b/test/client/master.rb
@@ -118,20 +118,24 @@ class TestMasterClient < Test::Unit::TestCase
# Make sure non-string facts don't make things go kablooie
def test_nonstring_facts
+ Puppet.err :a
# Add a nonstring fact
Facter.add("nonstring") do
setcode { 1 }
end
+ Puppet.err :b
assert_equal(1, Facter.nonstring, "Fact was a string from facter")
client = mkclient()
assert(! FileTest.exists?(@createdfile))
+ Puppet.err :c
assert_nothing_raised {
client.run
}
+ Puppet.err :d
end
def test_getplugins