diff --git a/extra/annotations/annotations-tests.factor b/extra/annotations/annotations-tests.factor new file mode 100644 index 0000000000..72fd0f8b74 --- /dev/null +++ b/extra/annotations/annotations-tests.factor @@ -0,0 +1,17 @@ +USING: annotations math sorting tools.test ; +IN: annotations.tests + +: three ( -- x ) + !BROKEN find a dictionary + "threa" ; + +: four ( -- x ) + !BROKEN this code is broken + 2 2 + 1+ ; + +: five ( -- x ) + !TODO return 5 + f ; + +[ { four three } ] [ BROKENs natural-sort ] unit-test +[ { five } ] [ TODOs ] unit-test