summaryrefslogtreecommitdiff
path: root/spec/functions/intersection_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/functions/intersection_spec.rb')
-rwxr-xr-xspec/functions/intersection_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/functions/intersection_spec.rb b/spec/functions/intersection_spec.rb
index fd44f7f..6361304 100755
--- a/spec/functions/intersection_spec.rb
+++ b/spec/functions/intersection_spec.rb
@@ -5,15 +5,15 @@ describe "the intersection function" do
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
it "should exist" do
- Puppet::Parser::Functions.function("intersection").should == "function_intersection"
+ expect(Puppet::Parser::Functions.function("intersection")).to eq("function_intersection")
end
it "should raise a ParseError if there are fewer than 2 arguments" do
- lambda { scope.function_intersection([]) }.should( raise_error(Puppet::ParseError) )
+ expect { scope.function_intersection([]) }.to( raise_error(Puppet::ParseError) )
end
it "should return the intersection of two arrays" do
result = scope.function_intersection([["a","b","c"],["b","c","d"]])
- result.should(eq(["b","c"]))
+ expect(result).to(eq(["b","c"]))
end
end