diff options
Diffstat (limited to 'spec/ruby/core/comparable/gte_spec.rb')
| -rw-r--r-- | spec/ruby/core/comparable/gte_spec.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/spec/ruby/core/comparable/gte_spec.rb b/spec/ruby/core/comparable/gte_spec.rb index c9d8264ee6..16da81b3ea 100644 --- a/spec/ruby/core/comparable/gte_spec.rb +++ b/spec/ruby/core/comparable/gte_spec.rb @@ -1,5 +1,5 @@ -require File.expand_path('../fixtures/classes', __FILE__) -require File.expand_path('../../../spec_helper', __FILE__) +require_relative 'fixtures/classes' +require_relative '../../spec_helper' describe "Comparable#>=" do it "calls #<=> on self with other and returns true if #<=> returns 0 or any Integer greater than 0" do @@ -42,6 +42,6 @@ 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 end |
