More unit test fixes

Slava Pestov 2008-12-14 22:38:14 -06:00
parent d5c8cd3ddd
commit 6ea1de887d
3 changed files with 9 additions and 6 deletions

View File

@ -1,10 +1,10 @@
! Copyright (C) 2008 Slava Pestov. ! Copyright (C) 2008 Slava Pestov.
! See http://factorcode.org/license.txt for BSD license. ! See http://factorcode.org/license.txt for BSD license.
USING: namespaces kernel io calendar sequences io.files USING: namespaces kernel io io.files io.pathnames io.directories
io.sockets continuations destructors prettyprint assocs io.sockets io.encodings.utf8
math.parser words debugger math combinators calendar calendar.format sequences continuations destructors
concurrency.messaging threads arrays init math.ranges strings prettyprint assocs math.parser words debugger math combinators
calendar.format io.encodings.utf8 ; concurrency.messaging threads arrays init math.ranges strings ;
IN: logging.server IN: logging.server
: log-root ( -- string ) : log-root ( -- string )

View File

@ -1,3 +1,6 @@
USING: io.pathnames io.files.temp io.directories
continuations math io.files.private kernel
namespaces tools.test ;
IN: io.pathnames.tests IN: io.pathnames.tests
[ "passwd" ] [ "/etc/passwd" file-name ] unit-test [ "passwd" ] [ "/etc/passwd" file-name ] unit-test

View File

@ -1,4 +1,4 @@
USING: tools.test io.files io io.streams.c USING: tools.test io.files io.files.temp io io.streams.c
io.encodings.ascii strings ; io.encodings.ascii strings ;
IN: io.streams.c.tests IN: io.streams.c.tests