diff options
Diffstat (limited to 'spec/ruby/core/comparable/lt_spec.rb')
| -rw-r--r-- | spec/ruby/core/comparable/lt_spec.rb | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/spec/ruby/core/comparable/lt_spec.rb b/spec/ruby/core/comparable/lt_spec.rb index e9e76360b9..175646d0d7 100644 --- a/spec/ruby/core/comparable/lt_spec.rb +++ b/spec/ruby/core/comparable/lt_spec.rb @@ -1,5 +1,5 @@ -require File.expand_path('../../../spec_helper', __FILE__) -require File.expand_path('../fixtures/classes', __FILE__) +require_relative '../../spec_helper' +require_relative 'fixtures/classes' describe "Comparable#<" do it "calls #<=> on self with other and returns true if #<=> returns any Integer less than 0" do @@ -38,6 +38,12 @@ describe "Comparable#<" do b = ComparableSpecs::Weird.new(20) a.should_receive(:<=>).any_number_of_times.and_return(nil) - lambda { (a < b) }.should raise_error(ArgumentError) + -> { (a < b) }.should.raise(ArgumentError) + end + + it "raises an argument error with a message containing the value" do + -> { ("foo" < 7) }.should.raise(ArgumentError) { |e| + e.message.should.include? "String with 7 failed" + } end end |
