mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
8c5b60eb22
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@60525 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
34 lines
905 B
Ruby
34 lines
905 B
Ruby
require File.expand_path('../../../spec_helper', __FILE__)
|
|
|
|
ruby_version_is "2.4" do
|
|
describe "Complex#infinite?" do
|
|
it "returns nil if magnitude is finite" do
|
|
(1+1i).infinite?.should == nil
|
|
end
|
|
|
|
it "returns 1 for positive infinity" do
|
|
value = Complex(Float::INFINITY, 42).infinite?
|
|
value.should == 1
|
|
end
|
|
|
|
it "returns 1 for positive complex with infinite imaginary" do
|
|
value = Complex(1, Float::INFINITY).infinite?
|
|
value.should == 1
|
|
end
|
|
|
|
it "returns -1 for negative infinity" do
|
|
value = -Complex(Float::INFINITY, 42).infinite?
|
|
value.should == -1
|
|
end
|
|
|
|
it "returns -1 for negative complex with infinite imaginary" do
|
|
value = -Complex(1, Float::INFINITY).infinite?
|
|
value.should == -1
|
|
end
|
|
|
|
it "returns nil for NaN" do
|
|
value = Complex(0, Float::NAN).infinite?
|
|
value.should == nil
|
|
end
|
|
end
|
|
end
|