summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--tests/stdlib/tstrutil.nim11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/stdlib/tstrutil.nim b/tests/stdlib/tstrutil.nim
index a080506d0..b97f2b1e9 100644
--- a/tests/stdlib/tstrutil.nim
+++ b/tests/stdlib/tstrutil.nim
@@ -95,16 +95,5 @@ assert(' '.repeat(0) == "")
 assert(" ".repeat(0) == "")
 assert(spaces(0) == "")
 
-assert(isNilOrEmpty(""))
-assert(isNilOrEmpty(nil))
-assert(not isNilOrEmpty("test"))
-assert(not isNilOrEmpty(" "))
-
-assert(isNilOrWhitespace(""))
-assert(isNilOrWhitespace(nil))
-assert(isNilOrWhitespace("       "))
-assert(isNilOrWhitespace("\t\l \v\r\f"))
-assert(not isNilOrWhitespace("ABc   \td"))
-
 main()
 #OUT ha/home/a1xyz/usr/bin