Sha256: 50335cc53e0febdc8681f0b1b7876da74f2959e10eed9c445842963af072689d
Contents?: true
Size: 601 Bytes
Versions: 52
Compression:
Stored size: 601 Bytes
Contents
require File.expand_path('../../../../spec_helper', __FILE__) require File.expand_path('../../fixtures/classes', __FILE__) describe :numeric_abs, :shared => true do before(:each) do @obj = NumericSpecs::Subclass.new end it "returns self when self is greater than 0" do @obj.should_receive(:<).with(0).and_return(false) @obj.send(@method).should == @obj end it "returns self\#@- when self is less than 0" do @obj.should_receive(:<).with(0).and_return(true) @obj.should_receive(:-@).and_return(:absolute_value) @obj.send(@method).should == :absolute_value end end
Version data entries
52 entries across 52 versions & 2 rubygems