summaryrefslogtreecommitdiff
path: root/spec/unit/puppet/parser/functions/is_float_spec.rb
diff options
context:
space:
mode:
authorJeff McCune <jeff@puppetlabs.com>2012-07-23 15:59:52 -0700
committerJeff McCune <jeff@puppetlabs.com>2012-07-23 15:59:52 -0700
commit243c7c2a499697654101af726f1f47d367e41c13 (patch)
tree855d07f105866afbb26f5e093997a7d5f295e408 /spec/unit/puppet/parser/functions/is_float_spec.rb
parentcc414a422de0d773a1012ca57f41f15b4d6caf06 (diff)
parenteffdfb845092fbe549c286926ac686aab1746a12 (diff)
downloadpuppet-stdlib-243c7c2a499697654101af726f1f47d367e41c13.tar.gz
puppet-stdlib-243c7c2a499697654101af726f1f47d367e41c13.tar.bz2
Merge branch '2.3.x'
* 2.3.x: (Maint) Don't mock with mocha (Maint) Fix up the get_module_path parser function (Maint) use PuppetlabsSpec::PuppetSeams.parser_scope (2.3.x) (Maint) Rename PuppetlabsSpec::Puppet{Seams,Internals} (Maint) use PuppetlabsSpec::PuppetSeams.parser_scope (Maint) Fix interpreter lines Conflicts: spec/spec_helper.rb spec/unit/puppet/parser/functions/get_module_path_spec.rb
Diffstat (limited to 'spec/unit/puppet/parser/functions/is_float_spec.rb')
-rw-r--r--spec/unit/puppet/parser/functions/is_float_spec.rb19
1 files changed, 6 insertions, 13 deletions
diff --git a/spec/unit/puppet/parser/functions/is_float_spec.rb b/spec/unit/puppet/parser/functions/is_float_spec.rb
index 55ba8cf..2f527d9 100644
--- a/spec/unit/puppet/parser/functions/is_float_spec.rb
+++ b/spec/unit/puppet/parser/functions/is_float_spec.rb
@@ -1,36 +1,29 @@
-#!/usr/bin/env rspec
+#! /usr/bin/env ruby -S rspec
require 'spec_helper'
describe "the is_float function" do
- before :all do
- Puppet::Parser::Functions.autoloader.loadall
- end
-
- before :each do
- @scope = Puppet::Parser::Scope.new
- end
+ let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
it "should exist" do
Puppet::Parser::Functions.function("is_float").should == "function_is_float"
end
it "should raise a ParseError if there is less than 1 arguments" do
- lambda { @scope.function_is_float([]) }.should( raise_error(Puppet::ParseError))
+ lambda { scope.function_is_float([]) }.should( raise_error(Puppet::ParseError))
end
it "should return true if a float" do
- result = @scope.function_is_float(["0.12"])
+ result = scope.function_is_float(["0.12"])
result.should(eq(true))
end
it "should return false if a string" do
- result = @scope.function_is_float(["asdf"])
+ result = scope.function_is_float(["asdf"])
result.should(eq(false))
end
it "should return false if an integer" do
- result = @scope.function_is_float(["3"])
+ result = scope.function_is_float(["3"])
result.should(eq(false))
end
-
end