summaryrefslogtreecommitdiffstats
path: root/spec/unit/util
diff options
context:
space:
mode:
authorNick Lewis <nick@puppetlabs.com>2011-04-12 13:08:08 -0700
committerNick Lewis <nick@puppetlabs.com>2011-04-12 13:08:08 -0700
commite569f3baec68b9f53b37ac07984b7a858b155991 (patch)
tree228ce122f952d72b513562a1874f93624ce855fb /spec/unit/util
parentf6fb193078c497476326ee80827e1585ae26603c (diff)
downloadpuppet-e569f3baec68b9f53b37ac07984b7a858b155991.tar.gz
puppet-e569f3baec68b9f53b37ac07984b7a858b155991.tar.xz
puppet-e569f3baec68b9f53b37ac07984b7a858b155991.zip
(#5027) Use Puppet#warning for deprecation_wanring instead of Kernel#warn
Using warning, the deprecation warnings will appear in logs and in color. Paired-With: Jesse Wolfe
Diffstat (limited to 'spec/unit/util')
-rwxr-xr-xspec/unit/util/logging_spec.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/spec/unit/util/logging_spec.rb b/spec/unit/util/logging_spec.rb
index 63f0a4d9b..bc2eaff43 100755
--- a/spec/unit/util/logging_spec.rb
+++ b/spec/unit/util/logging_spec.rb
@@ -99,21 +99,21 @@ describe Puppet::Util::Logging do
end
it "should the message with warn" do
- @logger.expects(:warn).with('foo')
+ @logger.expects(:warning).with('foo')
@logger.deprecation_warning 'foo'
end
it "should only log each unique message once" do
- @logger.expects(:warn).with('foo').once
+ @logger.expects(:warning).with('foo').once
5.times { @logger.deprecation_warning 'foo' }
end
it "should only log the first 100 messages" do
(1..100).each { |i|
- @logger.expects(:warn).with(i).once
+ @logger.expects(:warning).with(i).once
@logger.deprecation_warning i
}
- @logger.expects(:warn).with(101).never
+ @logger.expects(:warning).with(101).never
@logger.deprecation_warning 101
end
end