]> gitweb.factorcode.org Git - factor.git/blob - core/io/streams/c/c-tests.factor
4a3d94a1722f47ef3dfb8af5da4bbbf38f4d7146
[factor.git] / core / io / streams / c / c-tests.factor
1 USING: tools.test io.files io io.streams.c
2 io.encodings.ascii strings ;
3 IN: io.streams.c.tests
4
5 [ "hello world" ] [
6     "hello world" "test.txt" temp-file ascii set-file-contents
7
8     "test.txt" temp-file "rb" fopen <c-reader> contents
9     >string
10 ] unit-test