lib/ae/subjunctive/should.rb in ae-1.3.0 vs lib/ae/subjunctive/should.rb in ae-1.4.0
- old
+ new
@@ -9,11 +9,11 @@
# --Wendell Johnson
#
# THIS IS AN OPTIONAL LIBRARY.
#
module Should
- # The #must method is functionaly the same as #should.
+ # Make an assertion in subjunctive tense.
#
# 4.should == 3 #=> Assertion Error
#
# 4.should do
# self == 4
@@ -22,10 +22,10 @@
def should(*args, &block)
Assertor.new(self, :backtrace=>caller).be(*args, &block)
end
# Designate a negated expectation via a *functor*.
- # Read this as "must not".
+ # Read this as "should not".
#
# 4.should! == 4 #=> Assertion Error
#
def should!(*args, &block)
Assertor.new(self, :backtrace=>caller).not.be(*args, &block)