2011-10-30 18:13:50 -04:00
|
|
|
! Copyright (C) 2011 Doug Coleman.
|
|
|
|
! See http://factorcode.org/license.txt for BSD license.
|
2014-03-11 14:37:00 -04:00
|
|
|
USING: io.standard-paths io.standard-paths.unix sequences
|
|
|
|
tools.test ;
|
2011-10-30 18:13:50 -04:00
|
|
|
IN: io.standard-paths.unix.tests
|
|
|
|
|
2014-03-11 14:37:00 -04:00
|
|
|
{ f } [ "" find-in-path ] unit-test
|
|
|
|
{ t } [
|
|
|
|
"ls" find-in-path { "/bin/ls" "/usr/bin/ls" } member?
|
|
|
|
] unit-test
|
|
|
|
{ t } [
|
|
|
|
"ifconfig" find-in-path
|
|
|
|
{ "/sbin/ifconfig" "/usr/bin/ifconfig" } member?
|
|
|
|
] unit-test
|