]> gitweb.factorcode.org Git - factor.git/commitdiff
More unit test fixes
authorSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Mon, 15 Dec 2008 04:38:14 +0000 (22:38 -0600)
committerSlava Pestov <slava@slava-pestovs-macbook-pro.local>
Mon, 15 Dec 2008 04:38:14 +0000 (22:38 -0600)
basis/logging/server/server.factor
core/io/pathnames/pathnames-tests.factor
core/io/streams/c/c-tests.factor

index 1872bb0af2045b8646b6186d360d2cbb4319df7a..68f8d74571eb9d016e5133db6baa737a29957c66 100644 (file)
@@ -1,10 +1,10 @@
 ! Copyright (C) 2008 Slava Pestov.\r
 ! See http://factorcode.org/license.txt for BSD license.\r
-USING: namespaces kernel io calendar sequences io.files\r
-io.sockets continuations destructors prettyprint assocs\r
-math.parser words debugger math combinators\r
-concurrency.messaging threads arrays init math.ranges strings\r
-calendar.format io.encodings.utf8 ;\r
+USING: namespaces kernel io io.files io.pathnames io.directories\r
+io.sockets io.encodings.utf8\r
+calendar calendar.format sequences continuations destructors\r
+prettyprint assocs math.parser words debugger math combinators\r
+concurrency.messaging threads arrays init math.ranges strings ;\r
 IN: logging.server\r
 \r
 : log-root ( -- string )\r
index eaf3ed0ef7f7c0a59ad61d630801b0238461646e..41498fa15a3cfbaffbd553bc6fe1d8ae57ccadfe 100644 (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
 
 [ "passwd" ] [ "/etc/passwd" file-name ] unit-test
index 4a3d94a1722f47ef3dfb8af5da4bbbf38f4d7146..3dde9152d08eeb55624c951673debdc475e1c79d 100644 (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 ;
 IN: io.streams.c.tests