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(65.chr, "A")
|
|
assert_equal(0x42.chr, "B")
|
|
|
|
# multibyte encoding (not support yet)
|
|
assert_raise(RangeError) { 12345.chr }
|
|
end
|