summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKen Barber <ken@bob.sh>2012-01-10 18:58:07 +0000
committerKen Barber <ken@bob.sh>2012-01-10 18:58:07 +0000
commit7d545f0d600d259229eee27ae4be373e814e5dfe (patch)
tree07fb3d36b83855dc1273616d821370329c9e14f6
parent1370c64df9c00f7627f9ddd758d8bbdb5a36d03e (diff)
downloadpuppet-stdlib-7d545f0d600d259229eee27ae4be373e814e5dfe.tar.gz
puppet-stdlib-7d545f0d600d259229eee27ae4be373e814e5dfe.tar.bz2
(#11873) time function spec failure on Fixnum matcher
The rspec code for the time function was trying to match the type to be a 'Fixnum'. Ruby will sometimes make this a 'Bignum' depending on its internals and we can't rely on this to be true all the time. This patch just makes sure the type is an integer instead.
-rw-r--r--spec/unit/puppet/parser/functions/time_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/unit/puppet/parser/functions/time_spec.rb b/spec/unit/puppet/parser/functions/time_spec.rb
index 666e8e0..5d6cd97 100644
--- a/spec/unit/puppet/parser/functions/time_spec.rb
+++ b/spec/unit/puppet/parser/functions/time_spec.rb
@@ -20,7 +20,7 @@ describe "the time function" do
it "should return a number" do
result = @scope.function_time([])
- result.class.should(eq(Fixnum))
+ result.should be_an(Integer)
end
it "should be higher then when I wrote this test" do