mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
10 lines
276 B
Ruby
10 lines
276 B
Ruby
#assert('Kernel.sprintf') do
|
|
#end
|
|
|
|
assert('String#%') do
|
|
assert_equal "one=1", "one=%d" % 1
|
|
assert_equal "1 one 1.0", "%d %s %3.1f" % [ 1, "one", 1.01 ]
|
|
assert_equal "123 < 456", "%{num} < %<str>s" % { num: 123, str: "456" }
|
|
assert_equal 16, ("%b" % (1<<15)).size
|
|
end
|