remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / core / namespaces / namespaces-tests.factor
blob4c11e2389f1605ebeb1679d59b8be01c6e03c702
1 USING: kernel namespaces tools.test words ;
2 IN: namespaces.tests
4 H{ } clone "test-namespace" set
6 : test-namespace ( -- )
7     H{ } clone dup [ namespace = ] bind ;
9 [ t ] [ test-namespace ] unit-test
11 10 "some-global" set
12 [ f ]
13 [ H{ } clone [ f "some-global" set "some-global" get ] bind ]
14 unit-test