]> gitweb.factorcode.org Git - factor.git/blobdiff - basis/help/html/html-tests.factor
Revert "factor: rename [ ] [ ] unit-test -> { } [ ] unit-test using a refactoring...
[factor.git] / basis / help / html / html-tests.factor
index 839b2d3ce20d0749a1e6a3e361c5fb761559bed7..1fe7ed5611c4f9cd0902f1f8956dff34bef03fbf 100644 (file)
@@ -2,28 +2,28 @@ USING: help.html help.vocabs tools.test help.topics kernel sequences vocabs
 math ;
 IN: help.html.tests
 
-{ } [ "xml" >link help>html drop ] unit-test
+[ ] [ "xml" >link help>html drop ] unit-test
 
-{ } [ "foobar" >link topic>filename drop ] unit-test
+[ ] [ "foobar" >link topic>filename drop ] unit-test
 
-{ } [ { "foo" "bar" } >link topic>filename drop ] unit-test
+[ ] [ { "foo" "bar" } >link topic>filename drop ] unit-test
 
-{ } [ \ + topic>filename drop ] unit-test
+[ ] [ \ + topic>filename drop ] unit-test
 
-{ } [ \ + >link topic>filename drop ] unit-test
+[ ] [ \ + >link topic>filename drop ] unit-test
 
-{ } [ "doesnotexist" >vocab-link topic>filename drop ] unit-test
+[ ] [ "doesnotexist" >vocab-link topic>filename drop ] unit-test
 
-{ } [ "kernel" lookup-vocab topic>filename drop ] unit-test
+[ ] [ "kernel" lookup-vocab topic>filename drop ] unit-test
 
-{ } [ "io" <vocab-tag> topic>filename drop ] unit-test
+[ ] [ "io" <vocab-tag> topic>filename drop ] unit-test
 
-{ } [ "Steve Jobs" <vocab-author> topic>filename drop ] unit-test
+[ ] [ "Steve Jobs" <vocab-author> topic>filename drop ] unit-test
 
-{ } [ f topic>filename drop ] unit-test
+[ ] [ f topic>filename drop ] unit-test
 
-{ t } [ all-vocabs-really [ vocab-spec? ] all? ] unit-test
+[ t ] [ all-vocabs-really [ vocab-spec? ] all? ] unit-test
 
-{ t } [ all-vocabs-really [ vocab-name "sequences.private" = ] any? ] unit-test
+[ t ] [ all-vocabs-really [ vocab-name "sequences.private" = ] any? ] unit-test
 
-{ f } [ all-vocabs-really [ vocab-name "scratchpad" = ] any? ] unit-test
+[ f ] [ all-vocabs-really [ vocab-name "scratchpad" = ] any? ] unit-test