factor/extra/modern/modern-tests.factor

21 lines
431 B
Factor
Raw Normal View History

2017-08-26 02:25:23 -04:00
! Copyright (C) 2017 Doug Coleman.
! See http://factorcode.org/license.txt for BSD license.
USING: modern modern.slices tools.test ;
IN: modern.tests
{
{ { "!" "" } }
} [ "!" string>literals >strings ] unit-test
{
{ { "!" " lol" } }
} [ "! lol" string>literals >strings ] unit-test
{
{ "lol!" }
} [ "lol!" string>literals >strings ] unit-test
{
{ { "!" "lol" } }
} [ "!lol" string>literals >strings ] unit-test