Merge branch 'master' into experimental

db4
Alex Chapman 2008-05-15 16:43:21 +10:00
commit a0ca5c1cf5
2 changed files with 6 additions and 3 deletions

View File

@ -1,4 +1,5 @@
USING: destructors kernel tools.test continuations ;
USING: destructors kernel tools.test continuations accessors
namespaces sequences ;
IN: destructors.tests
TUPLE: dispose-error ;

View File

@ -1,6 +1,6 @@
! Copyright (C) 2008 James Cash
! See http://factorcode.org/license.txt for BSD license.
USING: lisp lisp.parser tools.test sequences math kernel ;
USING: lisp lisp.parser tools.test sequences math kernel parser ;
IN: lisp.test
@ -13,5 +13,7 @@ init-env
] unit-test
{ 3 } [
"((lambda (x y) (+ x y)) 1 2)" lisp-string>factor call
[
"((lambda (x y) (+ x y)) 1 2)" lisp-string>factor call
] with-interactive-vocabs
] unit-test