summaryrefslogtreecommitdiffhomepage
path: root/test
AgeCommit message (Collapse)Author
2012-06-13Assert should handle all exceptions.Masaki Muranaka
2012-06-12block_given? should work; close #262Yukihiro Matsumoto
2012-06-12String#split("") should split per character (byte for now)Yukihiro Matsumoto
2012-06-12s.split(nil) should work like s.split()Yukihiro Matsumoto
2012-06-12should enhance test for Array#sliceYukihiro Matsumoto
2012-06-12minor correction in test/t/syntax.rbYukihiro Matsumoto
2012-06-12String#split now understands string sepYukihiro Matsumoto
2012-06-11Add test for slice of shared string.Masamitsu MURASE
2012-06-05stop introducing Math::TORELANCEYukihiro Matsumoto
2012-06-04Merge pull request #245 from pbosetti/testsYukihiro "Matz" Matsumoto
Added Math.sqrt() that was missing in math.c, and added relevant test case
2012-06-04Added Math.sqrt() that was missing in math.c, and added relevant test casePaolo Bosetti
2012-06-05Add Time testsDaniel Bovensiepen
2012-06-03Merge pull request #239 from thecodeshop/jf/mrb_openYukihiro "Matz" Matsumoto
guard mrb_open mem allocation and downstream usage
2012-06-03Add more superclass testsDaniel Bovensiepen
2012-06-03Add superclass tests for ExceptionsDaniel Bovensiepen
2012-06-03Add BasicObject TestsDaniel Bovensiepen
2012-06-03Improve Class#superclass to ISODaniel Bovensiepen
2012-06-03Check mrb_open return value for NULLJon
2012-06-03A rescue clause with no parameter list rescues only StandardErrorsKazuki Tsujimoto
2012-06-03resolve conflict in test/t/class.rbYukihiro Matsumoto
2012-06-03Add Class#superclass; a patch made by @bovi; close #234Yukihiro Matsumoto
2012-06-03Add first test case for Class#new and prepare further feature tests for itDaniel Bovensiepen
2012-06-02Add test cases for HashDaniel Bovensiepen
2012-06-02Add string test for string interpolationDaniel Bovensiepen
2012-06-02Merge pull request #221 from bovi/test-for-issue211Yukihiro "Matz" Matsumoto
Add Test Case for issue #211
2012-06-02Add Test Case for issue #211Daniel Bovensiepen
2012-06-02Add Test Case for issue #210Daniel Bovensiepen
2012-05-31reimplement String#chompYukihiro Matsumoto
2012-05-31remove #new from immediate classesYukihiro Matsumoto
2012-05-30remove debug printYukihiro Matsumoto
2012-05-30specify allocating array size for Hash#valuesYukihiro Matsumoto
2012-05-29Add literal tests for currently working String literals and make notice ↵Daniel Bovensiepen
about literals which yet need to be proper implementation
2012-05-29SEGV by adding a new assertDaniel Bovensiepen
2012-05-29Raise SEGV by using String literalDaniel Bovensiepen
2012-05-29Forgot Literals fileDaniel Bovensiepen
2012-05-29Add Test cases for Literals, Enumeration, Exceptions and clean line endingsDaniel Bovensiepen
2012-05-28should compile mrbtest if libmruby.a is modifieYukihiro Matsumoto
2012-05-27add Enumerable tests and identify data corruption with merge in HashDaniel Bovensiepen
2012-05-25Add Tests for all Exception classes, for false, true, Proc, Module, nil and ↵Daniel Bovensiepen
Object
2012-05-23Merge pull request #189 from bovi/add-kernel-testsYukihiro "Matz" Matsumoto
Add ISO Test Cases for Kernel
2012-05-24Add ISO Test Cases for KernelDaniel Bovensiepen
2012-05-23Clean and DRY up the basic MakefilesJon
2012-05-23test t/*.rb spacing fixYukihiro Matsumoto
2012-05-22Merge pull request #180 from mitchblank/masterYukihiro "Matz" Matsumoto
call mrb_close() in tools and test programs
2012-05-22Add native and cross compiling CMake build supportJon
2012-05-22change example code to do mrb_close()Mitchell Blank Jr
I was hoping this would cause valgrind to complain less, but there is still a lot of memory leaked (does mrb_close() actually free all of the managed blocks?) Anyway this helps somewhat and is good practice
2012-05-21print description on exceptionsYukihiro Matsumoto
2012-05-20Fix Hash#shift return value from Hash to ArrayDaniel Bovensiepen
2012-05-19Complete ISO test cases for Hash, Range, String and SymbolDaniel Bovensiepen
2012-05-19Finish all Float ISO TestsDaniel Bovensiepen