From d55a75525ad931aaeab87fd9173f9e92df000ed9 Mon Sep 17 00:00:00 2001 From: Paul Lathrop Date: Wed, 21 May 2008 13:55:46 -0700 Subject: Added warnings test and cleaning up trailing whitespace. --- spec/unit/util/warnings.rb | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 spec/unit/util/warnings.rb diff --git a/spec/unit/util/warnings.rb b/spec/unit/util/warnings.rb new file mode 100644 index 000000000..46bd1cc2d --- /dev/null +++ b/spec/unit/util/warnings.rb @@ -0,0 +1,35 @@ +#!/usr/bin/env ruby + +require File.dirname(__FILE__) + '/../../spec_helper' + +describe Puppet::Util::Warnings, " when registering a warning message" do + before(:all) do + @msg1 = "booness" + @msg2 = "more booness" + end + + it "should always return nil" do + Puppet::Util::Warnings.warnonce(@msg1).should be(nil) + end + + it "should issue a warning" do + Puppet.expects(:warning).with(@msg1) + Puppet::Util::Warnings.warnonce(@msg1) + end + + it "should issue a warning exactly once per unique message" do + Puppet.expects(:warning).with(@msg1).once + Puppet::Util::Warnings.warnonce(@msg1) + Puppet::Util::Warnings.warnonce(@msg1) + end + + it "should issue multiple warnings for multiple unique messages" do + Puppet.expects(:warning).times(2) + Puppet::Util::Warnings.warnonce(@msg1) + Puppet::Util::Warnings.warnonce(@msg2) + end + + after(:each) do + Puppet::Util::Warnings.clear_warnings() + end +end -- cgit