505e240920b4cb3d51aa312c68f28d73c6a79b10
[mirror/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