]> gitweb.factorcode.org Git - factor.git/blobdiff - core/io/encodings/utf16n/utf16n-tests.factor
bootstrap: a few more paths
[factor.git] / core / io / encodings / utf16n / utf16n-tests.factor
index 9f3f35ff2a7136f01ab3256eee86f100e025d970..c76e090ae925b4a46d9feabb19744da6fcba8e35 100644 (file)
@@ -1,9 +1,9 @@
-USING: accessors alien.c-types kernel
-io.encodings.utf16 io.streams.byte-array tools.test ;
-IN: io.encodings.utf16n
+USING: accessors alien.data io.encodings.utf16
+io.encodings.utf16n io.streams.byte-array kernel tools.test ;
+IN: io.encodings.utf16n.tests
 
 : correct-endian ( obj -- ? )
     code>> little-endian? [ utf16le = ] [ utf16be = ] if ;
 
-[ t ] [ B{ } utf16n <byte-reader> correct-endian ] unit-test
-[ t ] [ utf16n <byte-writer> correct-endian ] unit-test
+{ t } [ B{ } utf16n <byte-reader> correct-endian ] unit-test
+{ t } [ utf16n <byte-writer> correct-endian ] unit-test