source: EcnlProtoTool/trunk/mruby-1.2.0/mrbgems/mruby-object-ext/test/nil.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: 179 bytes
Line 
1assert('NilClass#to_a') do
2 assert_equal [], nil.to_a
3end
4
5assert('NilClass#to_f') do
6 assert_equal 0.0, nil.to_f
7end
8
9assert('NilClass#to_i') do
10 assert_equal 0, nil.to_i
11end
Note: See TracBrowser for help on using the repository browser.