Update puppetlabs/stdlib module
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / monkey_patches / alias_should_to_must.rb
1 require 'rspec'
2 # class Object
3 class Object
4   # This is necessary because the RAL has a 'should'
5   # method.
6   alias must should
7   alias must_not should_not
8 end