Files
mruby-mruby/test
Kouhei Sutou 584d6de3c2 Fix a bug that if and no return value case can't return true clause value
Here is a script that reproduce this problem:

     x = if true
           1
         else
           case 2
           when 3
           end
           4
         end
     p x # => nil # 1 is expected
2015-02-24 00:16:41 +09:00
..
2015-01-03 17:53:32 +08:00
2014-03-03 16:53:26 +09:00
2012-09-06 07:49:14 -05:00
2012-11-05 15:50:46 +09:00

Running Tests

To run the tests, execute the following from the project's root directory.

$ make test