ruby-changes:74208
From: Nobuyoshi <ko1@a...>
Date: Sun, 23 Oct 2022 12:58:05 +0900 (JST)
Subject: [ruby-changes:74208] 0d9628e0de (master): Update Complex.polar with Complex tests
https://git.ruby-lang.org/ruby.git/commit/?id=0d9628e0de From 0d9628e0decc6c2c7ca0ca4e7ecbf7e4d025959b Mon Sep 17 00:00:00 2001 From: Nobuyoshi Nakada <nobu@r...> Date: Sun, 23 Oct 2022 12:46:13 +0900 Subject: Update Complex.polar with Complex tests --- test/ruby/test_complex.rb | 14 ++++++++++---- 1 file changed, 10 insertions(+), 4 deletions(-) diff --git a/test/ruby/test_complex.rb b/test/ruby/test_complex.rb index 17b5f64db2..5b63b03acf 100644 --- a/test/ruby/test_complex.rb +++ b/test/ruby/test_complex.rb @@ -221,10 +221,16 @@ class Complex_Test < Test::Unit::TestCase https://github.com/ruby/ruby/blob/trunk/test/ruby/test_complex.rb#L221 assert_equal([1,2], Complex.polar(1,2).polar) assert_equal(Complex.polar(1.0, Math::PI * 2 / 3), Complex.polar(1, Math::PI * 2 / 3)) - assert_in_out_err([], <<-'end;', ['OK'], []) - Complex.polar(1, Complex(1, 0)) - puts :OK - end; + one = 1+0i + c = Complex.polar(0, one) + assert_equal(0, c) + assert_predicate(c.real, :real?) + c = Complex.polar(one, 0) + assert_equal(1, c) + assert_predicate(c.real, :real?) + c = Complex.polar(one) + assert_equal(1, c) + assert_predicate(c.real, :real?) end def test_uplus -- cgit v1.2.3 -- ML: ruby-changes@q... Info: http://www.atdot.net/~ko1/quickml/