aboutsummaryrefslogtreecommitdiffstats
path: root/spec/ruby/core/string/to_c_spec.rb
diff options
context:
space:
mode:
authoreregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-20 20:18:52 +0000
committereregon <eregon@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2017-09-20 20:18:52 +0000
commit1d15d5f08032acf1b7bceacbb450d617ff6e0931 (patch)
treea3785a79899302bc149e4a6e72f624ac27dc1f10 /spec/ruby/core/string/to_c_spec.rb
parent75bfc6440d595bf339007f4fb280fd4d743e89c1 (diff)
downloadruby-1d15d5f08032acf1b7bceacbb450d617ff6e0931.tar.gz
Move spec/rubyspec to spec/ruby for consistency
* Other ruby implementations use the spec/ruby directory. [Misc #13792] [ruby-core:82287] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@59979 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'spec/ruby/core/string/to_c_spec.rb')
-rw-r--r--spec/ruby/core/string/to_c_spec.rb99
1 files changed, 99 insertions, 0 deletions
diff --git a/spec/ruby/core/string/to_c_spec.rb b/spec/ruby/core/string/to_c_spec.rb
new file mode 100644
index 0000000000..da353e18d5
--- /dev/null
+++ b/spec/ruby/core/string/to_c_spec.rb
@@ -0,0 +1,99 @@
+require File.expand_path('../../../spec_helper', __FILE__)
+
+describe "String#to_c" do
+ it "returns a Complex object" do
+ '9'.to_c.should be_an_instance_of(Complex)
+ end
+
+ it "understands integers" do
+ '20'.to_c.should == Complex(20)
+ end
+
+ it "understands negative integers" do
+ '-3'.to_c.should == Complex(-3)
+ end
+
+ it "understands fractions (numerator/denominator) for the real part" do
+ '2/3'.to_c.should == Complex(Rational(2, 3))
+ end
+
+ it "understands fractions (numerator/denominator) for the imaginary part" do
+ '4+2/3i'.to_c.should == Complex(4, Rational(2, 3))
+ end
+
+ it "understands negative fractions (-numerator/denominator) for the real part" do
+ '-2/3'.to_c.should == Complex(Rational(-2, 3))
+ end
+
+ it "understands negative fractions (-numerator/denominator) for the imaginary part" do
+ '7-2/3i'.to_c.should == Complex(7, Rational(-2, 3))
+ end
+
+ it "understands floats (a.b) for the real part" do
+ '2.3'.to_c.should == Complex(2.3)
+ end
+
+ it "understands floats (a.b) for the imaginary part" do
+ '4+2.3i'.to_c.should == Complex(4, 2.3)
+ end
+
+ it "understands negative floats (-a.b) for the real part" do
+ '-2.33'.to_c.should == Complex(-2.33)
+ end
+
+ it "understands negative floats (-a.b) for the imaginary part" do
+ '7-28.771i'.to_c.should == Complex(7, -28.771)
+ end
+
+ it "understands an integer followed by 'i' to mean that integer is the imaginary part" do
+ '35i'.to_c.should == Complex(0,35)
+ end
+
+ it "understands a negative integer followed by 'i' to mean that negative integer is the imaginary part" do
+ '-29i'.to_c.should == Complex(0,-29)
+ end
+
+ it "understands an 'i' by itself as denoting a complex number with an imaginary part of 1" do
+ 'i'.to_c.should == Complex(0,1)
+ end
+
+ it "understands a '-i' by itself as denoting a complex number with an imaginary part of -1" do
+ '-i'.to_c.should == Complex(0,-1)
+ end
+
+ it "understands 'a+bi' to mean a complex number with 'a' as the real part, 'b' as the imaginary" do
+ '79+4i'.to_c.should == Complex(79,4)
+ end
+
+ it "understands 'a-bi' to mean a complex number with 'a' as the real part, '-b' as the imaginary" do
+ '79-4i'.to_c.should == Complex(79,-4)
+ end
+
+ it "understands scientific notation for the real part" do
+ '2e3+4i'.to_c.should == Complex(2e3,4)
+ end
+
+ it "understands negative scientific notation for the real part" do
+ '-2e3+4i'.to_c.should == Complex(-2e3,4)
+ end
+
+ it "understands scientific notation for the imaginary part" do
+ '4+2e3i'.to_c.should == Complex(4, 2e3)
+ end
+
+ it "understands negative scientific notation for the imaginary part" do
+ '4-2e3i'.to_c.should == Complex(4, -2e3)
+ end
+
+ it "understands scientific notation for the real and imaginary part in the same String" do
+ '2e3+2e4i'.to_c.should == Complex(2e3,2e4)
+ end
+
+ it "understands negative scientific notation for the real and imaginary part in the same String" do
+ '-2e3-2e4i'.to_c.should == Complex(-2e3,-2e4)
+ end
+
+ it "returns a complex number with 0 as the real part, 0 as the imaginary part for unrecognised Strings" do
+ 'ruby'.to_c.should == Complex(0,0)
+ end
+end