summaryrefslogtreecommitdiffstats
path: root/spec/monkey_patches/alias_should_to_must.rb
blob: 1a1111799fd4722e7b37f611cf5d1b51087d5178 (plain)
1
2
3
4
5
6
7
8
require 'rspec'

class Object
  # This is necessary because the RAL has a 'should'
  # method.
  alias :must :should
  alias :must_not :should_not
end