factor/basis/io/launcher/windows/windows-tests.factor

11 lines
390 B
Factor
Raw Normal View History

IN: io.launcher.windows.tests
USING: tools.test io.launcher.windows ;
2008-04-06 01:53:50 -04:00
[ "hello world" ] [ { "hello" "world" } join-arguments ] unit-test
[ "bob \"mac arthur\"" ] [ { "bob" "mac arthur" } join-arguments ] unit-test
[ "bob mac\\\\arthur" ] [ { "bob" "mac\\\\arthur" } join-arguments ] unit-test
[ "bob \"mac arthur\\\\\"" ] [ { "bob" "mac arthur\\" } join-arguments ] unit-test