30 lines
1.1 KiB
Factor
Executable File
30 lines
1.1 KiB
Factor
Executable File
USING: tools.test io.files ;
|
|
IN: io.unix.files.tests
|
|
|
|
[ "/usr/libexec/" ] [ "/usr/libexec/awk/" parent-directory ] unit-test
|
|
[ "/etc/" ] [ "/etc/passwd" parent-directory ] unit-test
|
|
[ "/" ] [ "/etc/" parent-directory ] unit-test
|
|
[ "/" ] [ "/etc" parent-directory ] unit-test
|
|
[ "/" ] [ "/" parent-directory ] unit-test
|
|
|
|
[ f ] [ "" root-directory? ] unit-test
|
|
[ t ] [ "/" root-directory? ] unit-test
|
|
[ t ] [ "//" root-directory? ] unit-test
|
|
[ t ] [ "///////" root-directory? ] unit-test
|
|
|
|
[ "/" ] [ "/" file-name ] unit-test
|
|
[ "///" ] [ "///" file-name ] unit-test
|
|
|
|
[ "/" ] [ "/" "../.." append-path ] unit-test
|
|
[ "/" ] [ "/" "../../" append-path ] unit-test
|
|
[ "/lib" ] [ "/" "../lib" append-path ] unit-test
|
|
[ "/lib/" ] [ "/" "../lib/" append-path ] unit-test
|
|
[ "/lib" ] [ "/" "../../lib" append-path ] unit-test
|
|
[ "/lib/" ] [ "/" "../../lib/" append-path ] unit-test
|
|
|
|
[ "/lib" ] [ "/usr/" "/lib" append-path ] unit-test
|
|
[ "/lib/" ] [ "/usr/" "/lib/" append-path ] unit-test
|
|
[ "/lib/bux" ] [ "/usr" "/lib/bux" append-path ] unit-test
|
|
[ "/lib/bux/" ] [ "/usr" "/lib/bux/" append-path ] unit-test
|
|
[ t ] [ "/foo" absolute-path? ] unit-test
|