]> git.donarmstrong.com Git - dsa-puppet.git/blob - 3rdparty/modules/stdlib/spec/monkey_patches/alias_should_to_must.rb
upgrade to stdlib 4.6.1
[dsa-puppet.git] / 3rdparty / modules / stdlib / spec / monkey_patches / alias_should_to_must.rb
1 #! /usr/bin/env ruby -S rspec
2 require 'rspec'
3
4 class Object
5   # This is necessary because the RAL has a 'should'
6   # method.
7   alias :must :should
8   alias :must_not :should_not
9 end