summaryrefslogtreecommitdiff
path: root/spec/unit/puppet/parser/functions/validate_hash_spec.rb
diff options
context:
space:
mode:
authorstephen <stephen@puppetlabs.com>2012-10-16 11:54:14 +0100
committerJeff McCune <jeff@puppetlabs.com>2013-02-06 08:12:42 -0800
commit5f22933e75058310af06a993d663be2da7759c3d (patch)
treef630123d27c32d4947e853b82bc39a2909c6195a /spec/unit/puppet/parser/functions/validate_hash_spec.rb
parent4d24bd33b038aaf261342641e14fdced1371fe8d (diff)
ammend .should raise_error to .to raise_error
Diffstat (limited to 'spec/unit/puppet/parser/functions/validate_hash_spec.rb')
-rw-r--r--spec/unit/puppet/parser/functions/validate_hash_spec.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/unit/puppet/parser/functions/validate_hash_spec.rb b/spec/unit/puppet/parser/functions/validate_hash_spec.rb
index 06d77a1..a0c35c2 100644
--- a/spec/unit/puppet/parser/functions/validate_hash_spec.rb
+++ b/spec/unit/puppet/parser/functions/validate_hash_spec.rb
@@ -11,12 +11,12 @@ describe Puppet::Parser::Functions.function(:validate_hash) do
it "should not compile when #{the_string} is a string" do
Puppet[:code] = "validate_hash('#{the_string}')"
- expect { scope.compiler.compile }.should raise_error(Puppet::ParseError, /is not a Hash/)
+ expect { scope.compiler.compile }.to raise_error(Puppet::ParseError, /is not a Hash/)
end
it "should not compile when #{the_string} is a bare word" do
Puppet[:code] = "validate_hash(#{the_string})"
- expect { scope.compiler.compile }.should raise_error(Puppet::ParseError, /is not a Hash/)
+ expect { scope.compiler.compile }.to raise_error(Puppet::ParseError, /is not a Hash/)
end
end
@@ -35,7 +35,7 @@ describe Puppet::Parser::Functions.function(:validate_hash) do
$foo = undef
validate_hash($foo)
ENDofPUPPETcode
- expect { scope.compiler.compile }.should raise_error(Puppet::ParseError, /is not a Hash/)
+ expect { scope.compiler.compile }.to raise_error(Puppet::ParseError, /is not a Hash/)
end
end