Update puppetlabs/stdlib module
[mirror/dsa-puppet.git] / 3rdparty / modules / stdlib / spec / monkey_patches / alias_should_to_must.rb
old mode 100755 (executable)
new mode 100644 (file)
index 505e240..51a7b9d
@@ -1,9 +1,8 @@
-#! /usr/bin/env ruby -S rspec
 require 'rspec'
-
+# class Object
 class Object
   # This is necessary because the RAL has a 'should'
   # method.
-  alias :must :should
-  alias :must_not :should_not
+  alias must should
+  alias must_not should_not
 end