summaryrefslogtreecommitdiff
path: root/spec/functions/reject_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/functions/reject_spec.rb')
-rwxr-xr-xspec/functions/reject_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/functions/reject_spec.rb b/spec/functions/reject_spec.rb
index f2cb741..88a992e 100755
--- a/spec/functions/reject_spec.rb
+++ b/spec/functions/reject_spec.rb
@@ -6,15 +6,15 @@ describe "the reject function" do
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
it "should exist" do
- Puppet::Parser::Functions.function("reject").should == "function_reject"
+ expect(Puppet::Parser::Functions.function("reject")).to eq("function_reject")
end
it "should raise a ParseError if there is less than 1 arguments" do
- lambda { scope.function_reject([]) }.should( raise_error(Puppet::ParseError))
+ expect { scope.function_reject([]) }.to( raise_error(Puppet::ParseError))
end
it "should reject contents from an array" do
result = scope.function_reject([["1111", "aaabbb","bbbccc","dddeee"], "bbb"])
- result.should(eq(["1111", "dddeee"]))
+ expect(result).to(eq(["1111", "dddeee"]))
end
end