summaryrefslogtreecommitdiff
path: root/spec/functions/is_integer_spec.rb
diff options
context:
space:
mode:
authorDominic Cleal <dominic@cleal.org>2016-08-15 10:39:50 +0100
committerDominic Cleal <dominic@cleal.org>2016-08-15 11:38:40 +0100
commit39148468abbd9b8af74b776eb49f0a8388fc8541 (patch)
tree8b01a683ebeb2c1e6d78719300f3893a580ebf62 /spec/functions/is_integer_spec.rb
parent1d9d2c02d6669d4a6219140ae7ff3648a30c89cf (diff)
(maint) Switch 3.x deprecation() to use Puppet warning logger
The deprecation function was calling the `Kernel#warn` function which prints to stderr, rather than the Puppet logger. This causes problems for Puppet module tests on Travis CI, which has a cap on the amount of stdout/err permitted in its logs and also prevents users from finding the deprecation warnings when running under a Puppet master.
Diffstat (limited to 'spec/functions/is_integer_spec.rb')
-rwxr-xr-xspec/functions/is_integer_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/functions/is_integer_spec.rb b/spec/functions/is_integer_spec.rb
index 49550c7..2d68731 100755
--- a/spec/functions/is_integer_spec.rb
+++ b/spec/functions/is_integer_spec.rb
@@ -5,7 +5,7 @@ describe 'is_integer' do
# Checking for deprecation warning
it 'should display a single deprecation' do
- scope.expects(:warn).with(includes('This method is deprecated'))
+ scope.expects(:warning).with(includes('This method is deprecated'))
is_expected.to run.with_params(3)
end