mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
006634b489
* ext/-test-/integer/core_ext.c: move testutil/integer.c. * test/lib/-test-/integer.rb: extract implementation details from test/unit/assertions.rb. [Bug #12408] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@55114 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
14 lines
318 B
Ruby
14 lines
318 B
Ruby
require 'test/unit'
|
|
require '-test-/integer.so'
|
|
|
|
module Test::Unit::Assertions
|
|
def assert_fixnum(v, msg=nil)
|
|
assert_instance_of(Integer, v, msg)
|
|
assert_predicate(v, :fixnum?, msg)
|
|
end
|
|
|
|
def assert_bignum(v, msg=nil)
|
|
assert_instance_of(Integer, v, msg)
|
|
assert_predicate(v, :bignum?, msg)
|
|
end
|
|
end
|