summaryrefslogtreecommitdiffhomepage
path: root/test/t
diff options
context:
space:
mode:
authorKOBAYASHI Shuji <[email protected]>2019-06-08 22:32:19 +0900
committerKOBAYASHI Shuji <[email protected]>2019-06-08 22:32:19 +0900
commit2e160f53dbd69598ec6a3ee8a15f85b4cf5168cf (patch)
tree55d9edd514a7f8b25df5c7e895c9a77a537b7f1e /test/t
parent2847692d5900745630e1db484884a0bb5fffba7e (diff)
downloadmruby-2e160f53dbd69598ec6a3ee8a15f85b4cf5168cf.tar.gz
mruby-2e160f53dbd69598ec6a3ee8a15f85b4cf5168cf.zip
Remove "Check the usage of a NUL character" test
Because there is not assertion in this test and NUL character literal is used in other tests.
Diffstat (limited to 'test/t')
-rw-r--r--test/t/string.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/test/t/string.rb b/test/t/string.rb
index e5b001366..9817dd188 100644
--- a/test/t/string.rb
+++ b/test/t/string.rb
@@ -694,10 +694,6 @@ assert('String interpolation (mrb_str_concat for shared strings)') do
assert_equal "AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA:", "#{a}:"
end
-assert('Check the usage of a NUL character') do
- "qqq\0ppp"
-end
-
assert('String#bytes') do
str1 = "hello"
bytes1 = [104, 101, 108, 108, 111]