Adding tests for String.= and String./=

This commit is contained in:
Chris Hall 2018-06-26 15:59:09 +10:00
parent 6053862f0f
commit d197d32262

View File

@ -7,10 +7,16 @@
(with-test test
(assert-true test
(= @"hello world" @"hello world")
"string = works as expected")
"string = works as expected I")
(assert-true test
(= "hello world" "hello world")
"string = works as expected II")
(assert-true test
(/= @"hello world" @"bob")
"string /= works as expected")
"string /= works as expected I")
(assert-true test
(/= "hello world" "bob")
"string /= works as expected II")
(assert-equal test
"true"
&(str true)