]> gitweb.factorcode.org Git - factor.git/blob - basis/io/windows/launcher/launcher-tests.factor
Fix permission bits
[factor.git] / basis / io / windows / launcher / launcher-tests.factor
1 IN: io.windows.launcher.tests\r
2 USING: tools.test io.windows.launcher ;\r
3 \r
4 [ "hello world" ] [ { "hello" "world" } join-arguments ] unit-test\r
5 \r
6 [ "bob \"mac arthur\"" ] [ { "bob" "mac arthur" } join-arguments ] unit-test\r
7 \r
8 [ "bob mac\\\\arthur" ] [ { "bob" "mac\\\\arthur" } join-arguments ] unit-test\r
9 \r
10 [ "bob \"mac arthur\\\\\"" ] [ { "bob" "mac arthur\\" } join-arguments ] unit-test\r