Move regression test as String#dump is not in ther core but the mrbgems.

This commit is contained in:
Masaki Muranaka
2013-04-25 15:28:25 +09:00
parent 8464cac63c
commit da4b3d1c2c
2 changed files with 1 additions and 4 deletions
+1
View File
@@ -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
-4
View File
@@ -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