9 lines
151 B
Ruby
9 lines
151 B
Ruby
|
require 'rspec'
|
||
|
|
||
|
class Object
|
||
|
# This is necessary because the RAL has a 'should'
|
||
|
# method.
|
||
|
alias :must :should
|
||
|
alias :must_not :should_not
|
||
|
end
|