Sha256: a73b02aaba74429012c78ab1cca0ff1fe4610828e7daaff58099a925cbe44ef4
Contents?: true
Size: 1.37 KB
Versions: 52
Compression:
Stored size: 1.37 KB
Contents
require File.expand_path('../../../spec_helper', __FILE__) describe :complex_coerce, :shared => true do before(:each) do @one = Complex(1) end it "returns an array containing other and self as Complex when other is an Integer" do result = @one.coerce(2) result.should == [2, 1] result.first.should be_kind_of(Complex) result.last.should be_kind_of(Complex) end it "returns an array containing other and self as Complex when other is a Float" do result = @one.coerce(20.5) result.should == [20.5, 1] result.first.should be_kind_of(Complex) result.last.should be_kind_of(Complex) end it "returns an array containing other and self as Complex when other is a Bignum" do result = @one.coerce(4294967296) result.should == [4294967296, 1] result.first.should be_kind_of(Complex) result.last.should be_kind_of(Complex) end it "returns an array containing other and self as Complex when other is a Rational" do result = @one.coerce(Rational(5,6)) result.should == [Rational(5,6), 1] result.first.should be_kind_of(Complex) result.last.should be_kind_of(Complex) end it "raises a TypeError when other is a String" do lambda { @one.coerce("20") }.should raise_error(TypeError) lambda { @one.coerce(nil) }.should raise_error(TypeError) lambda { @one.coerce(false) }.should raise_error(TypeError) end end
Version data entries
52 entries across 52 versions & 2 rubygems