diff options
| author | Masaki Muranaka <[email protected]> | 2013-04-25 15:28:25 +0900 |
|---|---|---|
| committer | Masaki Muranaka <[email protected]> | 2013-04-25 15:28:25 +0900 |
| commit | da4b3d1c2cbcee672ec07760cf58b850213aa02a (patch) | |
| tree | e283a0a9cc13e2e2d9e9f0b5914fceaf14cb4146 | |
| parent | 8464cac63cce822245f76284a48d35343b680507 (diff) | |
| download | mruby-da4b3d1c2cbcee672ec07760cf58b850213aa02a.tar.gz mruby-da4b3d1c2cbcee672ec07760cf58b850213aa02a.zip | |
Move regression test as String#dump is not in ther core but the mrbgems.
| -rw-r--r-- | mrbgems/mruby-string-ext/test/string.rb | 1 | ||||
| -rw-r--r-- | test/t/string.rb | 4 |
2 files changed, 1 insertions, 4 deletions
diff --git a/mrbgems/mruby-string-ext/test/string.rb b/mrbgems/mruby-string-ext/test/string.rb index ce4bc7352..e20a2d3f3 100644 --- a/mrbgems/mruby-string-ext/test/string.rb +++ b/mrbgems/mruby-string-ext/test/string.rb @@ -14,6 +14,7 @@ assert('String#getbyte') do end assert('String#dump') do + ("\1" * 100).dump # should not raise an exception - regress #1210 "foo".dump == "\"foo\"" end diff --git a/test/t/string.rb b/test/t/string.rb index 945ef890c..1e0d44f67 100644 --- a/test/t/string.rb +++ b/test/t/string.rb @@ -415,10 +415,6 @@ assert('String#each_byte') do bytes1 == bytes2 end -assert('String#dump') do - ("\1" * 100).dump # should not raise an exception - regress #1210 -end - assert('String#inspect') do ("\1" * 100).inspect # should not raise an exception - regress #1210 end |
