require 'spec_helper' describe Object do describe '#must' do it 'is an alias for #should' do Object.method(:must).must == Object.method(:should) end end describe '#must_not' do it 'is an alias for #should_not' do Object.method(:must_not).must == Object.method(:should_not) end end end