mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* test/bigdecimal/test_bigdecimal.rb (test_inspect): fixed CPU bit
size dependent test. pointed out by TAKANO Mitsuhiro <takano32 AT jus.or.jp>. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19586 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
571b2e17b2
commit
61b43de755
2 changed files with 8 additions and 1 deletions
|
@ -1,3 +1,9 @@
|
|||
Fri Sep 26 19:01:47 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* test/bigdecimal/test_bigdecimal.rb (test_inspect): fixed CPU bit
|
||||
size dependent test. pointed out by TAKANO Mitsuhiro <takano32 AT
|
||||
jus.or.jp>.
|
||||
|
||||
Fri Sep 26 18:39:59 2008 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* common.mk (dist): nothing is need to run BASERUBY.
|
||||
|
|
|
@ -572,7 +572,8 @@ class TestBigDecimal < Test::Unit::TestCase
|
|||
|
||||
def test_inspect
|
||||
x = BigDecimal.new("1234.5678")
|
||||
assert_match(/^#<BigDecimal:[0-9a-f]+,'0.12345678E4',8\(12\)>$/, x.inspect)
|
||||
prec, maxprec = x.precs
|
||||
assert_match(/^#<BigDecimal:[0-9a-f]+,'0.12345678E4',#{prec}\(#{maxprec}\)>$/, x.inspect)
|
||||
end
|
||||
|
||||
def test_power
|
||||
|
|
Loading…
Reference in a new issue