summaryrefslogtreecommitdiff
path: root/spec/functions/min_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/functions/min_spec.rb')
-rwxr-xr-xspec/functions/min_spec.rb10
1 files changed, 5 insertions, 5 deletions
diff --git a/spec/functions/min_spec.rb b/spec/functions/min_spec.rb
index 71d593e..35a0890 100755
--- a/spec/functions/min_spec.rb
+++ b/spec/functions/min_spec.rb
@@ -6,22 +6,22 @@ describe "the min function" do
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
it "should exist" do
- Puppet::Parser::Functions.function("min").should == "function_min"
+ expect(Puppet::Parser::Functions.function("min")).to eq("function_min")
end
it "should raise a ParseError if there is less than 1 arguments" do
- lambda { scope.function_min([]) }.should( raise_error(Puppet::ParseError))
+ expect { scope.function_min([]) }.to( raise_error(Puppet::ParseError))
end
it "should be able to compare strings" do
- scope.function_min(["albatross","dog","horse"]).should(eq("albatross"))
+ expect(scope.function_min(["albatross","dog","horse"])).to(eq("albatross"))
end
it "should be able to compare numbers" do
- scope.function_min([6,8,4]).should(eq(4))
+ expect(scope.function_min([6,8,4])).to(eq(4))
end
it "should be able to compare a number with a stringified number" do
- scope.function_min([1,"2"]).should(eq(1))
+ expect(scope.function_min([1,"2"])).to(eq(1))
end
end