Note that exim contains tracker-specific configuration
[mirror/dsa-puppet.git] / 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