remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / basis / compiler / tests / redefine4.factor
blob2f21777801b44fd30e816a95bb7d39bd815cab8e
1 IN: compiler.tests
2 USING: io.streams.string kernel tools.test eval ;
4 : declaration-test-1 ( -- a ) 3 ; flushable
6 : declaration-test ( -- ) declaration-test-1 drop ;
8 [ "" ] [ [ declaration-test ] with-string-writer ] unit-test
10 [ ] [ "IN: compiler.tests USE: io : declaration-test-1 ( -- a ) \"X\" write f ;" eval ] unit-test
12 [ "X" ] [ [ declaration-test ] with-string-writer ] unit-test