source: EcnlProtoTool/trunk/mruby-1.2.0/mrbgems/mruby-sprintf/test/sprintf.rb@ 270

Last change on this file since 270 was 270, checked in by coas-nagasima, 7 years ago

mruby版ECNLプロトタイピング・ツールを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-ruby
File size: 235 bytes
Line 
1#assert('Kernel.sprintf') do
2#end
3
4assert('String#%') do
5 assert_equal "one=1", "one=%d" % 1
6 assert_equal "1 one 1.0", "%d %s %3.1f" % [ 1, "one", 1.01 ]
7 assert_equal "123 < 456", "%{num} < %<str>s" % { num: 123, str: "456" }
8end
Note: See TracBrowser for help on using the repository browser.