mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
11 lines
194 B
Ruby
11 lines
194 B
Ruby
##
|
|
# Numeric(Ext) Test
|
|
|
|
assert('Integer#chr') do
|
|
assert_equal("A", 65.chr)
|
|
assert_equal("B", 0x42.chr)
|
|
|
|
# multibyte encoding (not support yet)
|
|
assert_raise(RangeError) { 12345.chr }
|
|
end
|