diff --git a/extra/promises/promises-tests.factor b/extra/promises/promises-tests.factor new file mode 100644 index 0000000000..79e7dc570e --- /dev/null +++ b/extra/promises/promises-tests.factor @@ -0,0 +1,7 @@ +IN: promises.tests +USING: promises math tools.test ; + +LAZY: lazy-test ( a -- b ) 1 + ; + +{ 1 1 } [ lazy-test ] must-infer-as +[ 3 ] [ 2 lazy-test force ] unit-test \ No newline at end of file