summaryrefslogtreecommitdiffhomepage
path: root/test
AgeCommit message (Collapse)Author
2014-03-26Don't use ensure to fix crash of mruby-eval test.take_cheeze
2014-03-23Small correction to the test identification.chasonr
2014-03-23Implement \u notation for strings and regexes.chasonr
This change adds the \u notation for double quoted strings and regular expressions. It does not implement the \u notation for character literals. Both the \uNNNN and \u{NNNN} notations are supported. \uNNNN is implemented by emitting equivalent UTF-8; that is, "\u4000" is equivalent to "\xE4\x80\x80". Unlike CRuby, the \u{NNNN} notation allows only one character per pair of braces; I see no way to lift this restriction without remodeling the parser.
2014-03-24remove unnecessary operator method call; ref #1927Yukihiro "Matz" Matsumoto
2014-03-24Count crashed tests in total tests count.take_cheeze
2014-03-21Float#round fix bug for infinity and nan casesksss
2014-03-21Fix behavior of Comparable methodsksss
when <=> return nil
2014-03-21add tests for TrueClassAkira Kuroda
reorder and add tests for 15.2.5.1
2014-03-17Merge branch 'master' of github.com:mruby/mrubyYukihiro "Matz" Matsumoto
2014-03-17Merge pull request #1875 from akuroda/pr_nil_testYukihiro "Matz" Matsumoto
add unit tests for NilClass
2014-03-17refactor Enumerable#{all?,any?} testsYukihiro "Matz" Matsumoto
2014-03-17Merge pull request #1869 from suzukaze/add-test-enumerable.rbYukihiro "Matz" Matsumoto
Add test enumerable.rb
2014-03-17Merge pull request #1871 from ksss/numeric-plusYukihiro "Matz" Matsumoto
fix bug when `0 + other object`
2014-03-17Merge pull request #1872 from ksss/numeric-mulYukihiro "Matz" Matsumoto
fix bug when `0 * other object`
2014-03-17Merge pull request #1873 from suzukaze/refactor-assert.rbYukihiro "Matz" Matsumoto
Refactor assert_true
2014-03-17add unit tests for NilClassAkira Kuroda
2014-03-16float + nil should be raise TypeErrorksss
2014-03-16Refactor assert_trueJun Hiroe
2014-03-16fix bug when `0 * other object`ksss
2014-03-16fix bug when `0 + other object`ksss
2014-03-16Add Enumerable#any?(&block) testsJun Hiroe
2014-03-16Add Enumerable#all?(&block) testsJun Hiroe
2014-03-15Hash#shift may return any entriesYukihiro "Matz" Matsumoto
2014-03-11add assertion method `assert_nothing_raised'ksss
2014-03-10reduce mrb_open calls in mrbgem testtake_cheeze
2014-03-09Add comments to notify files are auto generated.Masaki Muranaka
2014-03-08fix #1823ksss
2014-03-07Merge pull request #1820 from ksss/string-embedYukihiro "Matz" Matsumoto
Embed small string
2014-03-07Fix behavior Hash#eql?ksss
2014-03-06add embed string testksss
2014-03-06make embed string when create literalsksss
2014-03-06embed small stringksss
use flags 4 for *this object is embed* use flags 8~64 for *embed string length*
2014-03-05__FILE__ test: add support for \ as separatorcremno
2014-03-04fix off-by-one error in String#rindex(fixnum)cubicdaiya
null-terminated string should not be included in search targets.
2014-03-04add tests for Integer#divmod.Tomoyuki Sahara
2014-03-04Fix Float#divmod.Tomoyuki Sahara
2014-03-03run enabled gem's bintest onlytake_cheeze
2014-03-02add tests for String#*Akira Kuroda
add test cases for 0 and -1
2014-02-28swap actual and expected; ref #1764Yukihiro "Matz" Matsumoto
2014-02-28fix test for Array#[]ksss
2014-02-27Refactor tests in kernel.rbJun Hiroe
2014-02-27Merge pull request #1751 from ↵Yukihiro "Matz" Matsumoto
cubicdaiya/issues/test_for_instance_variable_defined_question Add test for Kernel#instance_variable_defined?
2014-02-27Merge pull request #1753 from take-cheeze/assert_rbYukihiro "Matz" Matsumoto
Compile assert.rb once.
2014-02-26add test for Kernel#instance_variable_defined?cubicdaiya
2014-02-26compile assert.rb oncetake_cheeze
2014-02-26add test for __LINE__ and __FILE__take_cheeze
2014-02-22fix the position of capitalize! and downcast!, and add test for upcase!Akira Kuroda
2014-02-22add tests for String#capitalize! and String#downcase!Akira Kuroda
2014-02-14add test for Hash#dupLi Yazhou
2014-02-10resolve conflict in travis_config.rbYukihiro "Matz" Matsumoto