diff options
Diffstat (limited to 'spec/ruby/core/comparable/lt_spec.rb')
| -rw-r--r-- | spec/ruby/core/comparable/lt_spec.rb | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/spec/ruby/core/comparable/lt_spec.rb b/spec/ruby/core/comparable/lt_spec.rb index 4db92719e2..175646d0d7 100644 --- a/spec/ruby/core/comparable/lt_spec.rb +++ b/spec/ruby/core/comparable/lt_spec.rb @@ -38,6 +38,12 @@ describe "Comparable#<" do b = ComparableSpecs::Weird.new(20) a.should_receive(:<=>).any_number_of_times.and_return(nil) - -> { (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 |
