puppetlabs-stdlib/spec/monkey_patches/alias_should_to_must.rb
2011-06-29 12:25:43 +01:00

8 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