summaryrefslogtreecommitdiff
path: root/puppet/modules/stdlib/spec/monkey_patches/alias_should_to_must.rb
blob: 505e240920b4cb3d51aa312c68f28d73c6a79b10 (plain)
1
2
3
4
5
6
7
8
9
#! /usr/bin/env ruby -S rspec
require 'rspec'

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