mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
4fbb9aa3cb
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63293 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
47 lines
1.1 KiB
Ruby
47 lines
1.1 KiB
Ruby
require_relative '../../spec_helper'
|
|
require 'bigdecimal'
|
|
|
|
describe "BigDecimal#inspect" do
|
|
|
|
before :each do
|
|
@bigdec = BigDecimal("1234.5678")
|
|
end
|
|
|
|
it "returns String" do
|
|
@bigdec.inspect.kind_of?(String).should == true
|
|
end
|
|
|
|
ruby_version_is ""..."2.4" do
|
|
it "returns String starting with #" do
|
|
@bigdec.inspect[0].should == ?#
|
|
end
|
|
|
|
it "encloses information in angle brackets" do
|
|
@bigdec.inspect.should =~ /^.<.*>$/
|
|
end
|
|
|
|
it "is comma separated list of three items" do
|
|
@bigdec.inspect.should =~ /...*,.*,.*/
|
|
end
|
|
|
|
it "value after first comma is value as string" do
|
|
@bigdec.inspect.split(",")[1].should == "\'0.12345678E4\'"
|
|
end
|
|
|
|
it "last part is number of significant digits" do
|
|
signific_string = "#{@bigdec.precs[0]}(#{@bigdec.precs[1]})"
|
|
@bigdec.inspect.split(",")[2].should == signific_string + ">"
|
|
end
|
|
|
|
it "looks like this" do
|
|
regex = /^\#\<BigDecimal\:.*,'0\.12345678E4',[0-9]+\([0-9]+\)>$/
|
|
@bigdec.inspect.should =~ regex
|
|
end
|
|
end
|
|
|
|
ruby_version_is "2.4" do
|
|
it "looks like this" do
|
|
@bigdec.inspect.should == "0.12345678e4"
|
|
end
|
|
end
|
|
end
|