Files
zulip/puppet/stdlib/spec/monkey_patches/alias_should_to_must.rb
Luke Faraone aa52475e96 Switch to puppetlabs/apt
(imported from commit b2f581280dc7877051ef79d86eac671bfd455ace)
2014-01-31 13:43:04 -05:00

9 lines
151 B
Ruby
Executable File

require 'rspec'
class Object
# This is necessary because the RAL has a 'should'
# method.
alias :must :should
alias :must_not :should_not
end