Fix failing unit test
parent
26dca5d77a
commit
9c31dc1164
|
@ -1,7 +1,7 @@
|
|||
IN: io.files.tests
|
||||
USING: tools.test io.files io threads kernel continuations
|
||||
io.encodings.ascii io.files.unique sequences strings accessors
|
||||
io.encodings.utf8 ;
|
||||
USING: tools.test io.files io.files.private io threads kernel
|
||||
continuations io.encodings.ascii io.files.unique sequences
|
||||
strings accessors io.encodings.utf8 ;
|
||||
|
||||
[ ] [ "blahblah" temp-file dup exists? [ delete-directory ] [ drop ] if ] unit-test
|
||||
[ ] [ "blahblah" temp-file make-directory ] unit-test
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
! Copyright (C) 2006, 2008 Slava Pestov.
|
||||
! See http://factorcode.org/license.txt for BSD license.
|
||||
USING: arrays generic assocs kernel namespaces strings
|
||||
quotations io continuations accessors ;
|
||||
quotations io continuations accessors sequences ;
|
||||
IN: io.streams.nested
|
||||
|
||||
TUPLE: filter-writer stream ;
|
||||
|
@ -66,3 +66,7 @@ M: style-stream make-block-stream
|
|||
M: style-stream make-cell-stream
|
||||
[ do-nested-style make-cell-stream ] [ style>> ] bi
|
||||
<style-stream> ;
|
||||
|
||||
M: style-stream stream-write-table
|
||||
[ [ [ stream>> ] map ] map ] [ ] [ stream>> ] tri*
|
||||
stream-write-table ;
|
||||
|
|
Loading…
Reference in New Issue