Daniel Bovensiepen
|
e8b5309080
|
Add a Test Case for #359 Array Corruption
|
2012-07-10 15:11:31 +08:00 |
|
Daniel Bovensiepen
|
0c10becf91
|
Add tests for Modules #append_features, #include, #included and #included_modules
|
2012-07-08 04:44:55 +08:00 |
|
Yukihiro Matsumoto
|
0d99856b57
|
proper type check when creating a range; #345
|
2012-07-08 00:20:56 +09:00 |
|
Yukihiro Matsumoto
|
becb7e9877
|
.. is weaker than ==
|
2012-07-08 00:19:40 +09:00 |
|
Yukihiro Matsumoto
|
cd1e1a0089
|
remove unused variables
|
2012-07-03 21:33:20 +09:00 |
|
Yukihiro Matsumoto
|
e814495576
|
test/driver to use EXIT_SUCCESS
|
2012-07-03 21:04:25 +09:00 |
|
Yukihiro Matsumoto
|
65096c4c1b
|
add context to parser, that would hold local variable info, filename, and line number. mrbc_context argument has been added to mrb_parse_xxx() functions. Normally, you just to need to add NULL (or 0) to the last argument of the above functions.
|
2012-07-03 20:59:07 +09:00 |
|
Daniel Bovensiepen
|
e8ad94da93
|
Fix kernel test descriptions
|
2012-06-27 03:12:37 +08:00 |
|
Daniel Bovensiepen
|
d3bf659bfd
|
Add more kernel tests
|
2012-06-27 03:06:07 +08:00 |
|
Yukihiro Matsumoto
|
ccde2d3be0
|
update ISO chapter number in test/t/kernel.rb
|
2012-06-24 22:30:56 +09:00 |
|
Yukihiro "Matz" Matsumoto
|
431d1c8e2b
|
Merge pull request #316 from masamitsu-murase/modify_obj_clone
Modify Kernel#clone and Kernel#dup
|
2012-06-24 06:26:49 -07:00 |
|
Masamitsu MURASE
|
062e96960d
|
Add sample test for Kernel#clone and Kernel#dup.
|
2012-06-24 16:55:43 +09:00 |
|
Masamitsu MURASE
|
a194f30f62
|
Add test for Struct#==.
|
2012-06-24 04:03:46 +09:00 |
|
Daniel Bovensiepen
|
2ae84f7d83
|
Add execution time to tests
|
2012-06-21 16:00:04 +08:00 |
|
Yukihiro "Matz" Matsumoto
|
d105ea496f
|
Merge pull request #305 from bovi/optional-feature
Tests are executed based on available features
|
2012-06-21 00:11:35 -07:00 |
|
Daniel Bovensiepen
|
7a410123dd
|
only execute struct tests if struct feature is activated
|
2012-06-21 15:02:08 +08:00 |
|
Daniel Bovensiepen
|
1baa3faf3f
|
only execute time tests if time feature is activated
|
2012-06-21 15:01:52 +08:00 |
|
Daniel Bovensiepen
|
8e89cd456c
|
only execute math tests if math feature is activated
|
2012-06-21 15:01:39 +08:00 |
|
Daniel Bovensiepen
|
304b7eec0a
|
Skip time test in case that Time isn't implemented
|
2012-06-21 14:23:36 +08:00 |
|
Daniel Bovensiepen
|
d88a37c1c9
|
Skip struct test in case that Struct isn't implemented
|
2012-06-21 14:23:21 +08:00 |
|
Daniel Bovensiepen
|
c09f804e2b
|
Skip math test in case that Math isn't implemented
|
2012-06-21 14:22:50 +08:00 |
|
Masaki Muranaka
|
750a639eab
|
Add test for Array#to_s and Array#inspect.
|
2012-06-21 11:43:03 +09:00 |
|
Yukihiro Matsumoto
|
1a7bdcf156
|
remove local_variables test
|
2012-06-19 16:48:31 +09:00 |
|
Daniel Bovensiepen
|
83e5999d7e
|
Make CFLAG choices in Makefiles more flexible
|
2012-06-18 11:22:05 +08:00 |
|
Yukihiro Matsumoto
|
f88a839914
|
add Struct tests
|
2012-06-18 09:09:00 +09:00 |
|
Yukihiro Matsumoto
|
39f47c1915
|
remove LoadError
|
2012-06-15 13:55:27 +09:00 |
|
Masaki Muranaka
|
cfd5f5157d
|
Move Subclasses of ScriptError to mrblib.
|
2012-06-15 13:06:43 +09:00 |
|
Masaki Muranaka
|
587e0b0137
|
Tests for Comparable. Still not all path coverage.
|
2012-06-14 17:47:29 +09:00 |
|
Yukihiro Matsumoto
|
73d7000b8f
|
remove .inspect from bs_block.rb tests
|
2012-06-14 05:15:08 +09:00 |
|
Masaki Muranaka
|
bddbf20785
|
Assert should handle all exceptions.
|
2012-06-13 09:41:30 +09:00 |
|
Yukihiro Matsumoto
|
f537e2bb96
|
block_given? should work; close #262
|
2012-06-12 19:09:11 +09:00 |
|
Yukihiro Matsumoto
|
30a062c165
|
String#split("") should split per character (byte for now)
|
2012-06-12 12:58:49 +09:00 |
|
Yukihiro Matsumoto
|
5937c29281
|
s.split(nil) should work like s.split()
|
2012-06-12 12:29:20 +09:00 |
|
Yukihiro Matsumoto
|
b32e586099
|
should enhance test for Array#slice
|
2012-06-12 12:19:25 +09:00 |
|
Yukihiro Matsumoto
|
46b098e079
|
minor correction in test/t/syntax.rb
|
2012-06-12 12:16:18 +09:00 |
|
Yukihiro Matsumoto
|
6987ba02f8
|
String#split now understands string sep
|
2012-06-12 09:51:10 +09:00 |
|
Masamitsu MURASE
|
46c9260305
|
Add test for slice of shared string.
|
2012-06-11 01:39:45 +09:00 |
|
Yukihiro Matsumoto
|
501f7f6027
|
stop introducing Math::TORELANCE
|
2012-06-05 09:09:50 +09:00 |
|
Yukihiro "Matz" Matsumoto
|
114168a551
|
Merge pull request #245 from pbosetti/tests
Added Math.sqrt() that was missing in math.c, and added relevant test case
|
2012-06-04 17:04:47 -07:00 |
|
Paolo Bosetti
|
2c7cee8a1a
|
Added Math.sqrt() that was missing in math.c, and added relevant test case
|
2012-06-04 15:57:05 -07:00 |
|
Daniel Bovensiepen
|
db6c374301
|
Add Time tests
|
2012-06-05 03:11:56 +08:00 |
|
Yukihiro "Matz" Matsumoto
|
d8f1e17ef6
|
Merge pull request #239 from thecodeshop/jf/mrb_open
guard mrb_open mem allocation and downstream usage
|
2012-06-03 09:41:32 -07:00 |
|
Daniel Bovensiepen
|
0c2d74020a
|
Add more superclass tests
|
2012-06-03 23:31:53 +08:00 |
|
Daniel Bovensiepen
|
c78dc2930c
|
Add superclass tests for Exceptions
|
2012-06-03 23:31:17 +08:00 |
|
Daniel Bovensiepen
|
00caf25b52
|
Add BasicObject Tests
|
2012-06-03 23:30:15 +08:00 |
|
Daniel Bovensiepen
|
5612d195ec
|
Improve Class#superclass to ISO
|
2012-06-03 23:29:40 +08:00 |
|
Jon
|
2fff59dc86
|
Check mrb_open return value for NULL
|
2012-06-03 11:11:35 -04:00 |
|
Kazuki Tsujimoto
|
0629cf21ba
|
A rescue clause with no parameter list rescues only StandardErrors
|
2012-06-03 17:48:02 +09:00 |
|
Yukihiro Matsumoto
|
7f243a9b53
|
resolve conflict in test/t/class.rb
|
2012-06-03 08:23:40 +09:00 |
|
Yukihiro Matsumoto
|
df80b7835a
|
Add Class#superclass; a patch made by @bovi; close #234
|
2012-06-03 08:20:48 +09:00 |
|