9 lines
		
	
	
		
			328 B
		
	
	
	
		
			Factor
		
	
	
			
		
		
	
	
			9 lines
		
	
	
		
			328 B
		
	
	
	
		
			Factor
		
	
	
! Copyright (C) 2011 Doug Coleman.
 | 
						|
! See http://factorcode.org/license.txt for BSD license.
 | 
						|
USING: io.standard-paths io.standard-paths.unix tools.test ;
 | 
						|
IN: io.standard-paths.unix.tests
 | 
						|
 | 
						|
[ f ] [ "" find-in-path ] unit-test
 | 
						|
[ "/bin/ls" ] [ "ls" find-in-path ] unit-test
 | 
						|
[ "/sbin/ifconfig" ] [ "ifconfig" find-in-path ] unit-test
 |