summaryrefslogtreecommitdiff
path: root/spec/functions/strip_spec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'spec/functions/strip_spec.rb')
-rwxr-xr-xspec/functions/strip_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/functions/strip_spec.rb b/spec/functions/strip_spec.rb
index fccdd26..e228761 100755
--- a/spec/functions/strip_spec.rb
+++ b/spec/functions/strip_spec.rb
@@ -4,15 +4,15 @@ require 'spec_helper'
describe "the strip function" do
let(:scope) { PuppetlabsSpec::PuppetInternals.scope }
it "should exist" do
- Puppet::Parser::Functions.function("strip").should == "function_strip"
+ expect(Puppet::Parser::Functions.function("strip")).to eq("function_strip")
end
it "should raise a ParseError if there is less than 1 arguments" do
- lambda { scope.function_strip([]) }.should( raise_error(Puppet::ParseError))
+ expect { scope.function_strip([]) }.to( raise_error(Puppet::ParseError))
end
it "should strip a string" do
result = scope.function_strip([" ab cd "])
- result.should(eq('ab cd'))
+ expect(result).to(eq('ab cd'))
end
end