Sha256: 8bc0ca3fb761bc9c2c173d891419659f4451358501aec0bd38c8e0fe5b2a6a9a
Contents?: true
Size: 402 Bytes
Versions: 52
Compression:
Stored size: 402 Bytes
Contents
describe :complex_conjugate, :shared => true do it "returns the complex conjugate: conj a + bi = a - bi" do Complex(3, 5).send(@method).should == Complex(3, -5) Complex(3, -5).send(@method).should == Complex(3, 5) Complex(-3.0, 5.2).send(@method).should be_close(Complex(-3.0, -5.2), TOLERANCE) Complex(3.0, -5.2).send(@method).should be_close(Complex(3.0, 5.2), TOLERANCE) end end
Version data entries
52 entries across 52 versions & 2 rubygems