remove math.blas.syntax and merge parsing words into math.blas.vectors/matrices
[factor/jcg.git] / core / slots / slots-tests.factor
blob767cec48301c0ac4f1d969b3f5e746af888b1fc7
1 IN: slots.tests
2 USING: math accessors slots strings generic.standard kernel
3 tools.test generic words parser eval math.functions ;
5 TUPLE: r/w-test foo ;
7 TUPLE: r/o-test { foo read-only } ;
9 [ r/o-test new 123 >>foo ] [ no-method? ] must-fail-with
11 TUPLE: decl-test { foo integer } ;
13 [ decl-test new 1.0 >>foo ] [ bad-slot-value? ] must-fail-with
15 TUPLE: hello length ;
17 [ 3 ] [ "xyz" length>> ] unit-test
19 [ "xyz" 4 >>length ] [ no-method? ] must-fail-with
21 [ t ] [ r/o-test \ foo>> method "foldable" word-prop ] unit-test
22 [ t ] [ r/o-test \ foo>> method "flushable" word-prop ] unit-test
24 [ f ] [ r/w-test \ foo>> method "foldable" word-prop ] unit-test
25 [ t ] [ r/w-test \ foo>> method "flushable" word-prop ] unit-test
27 ! See if declarations are cleared on redefinition
28 [ ] [ "IN: slots.tests TUPLE: r/w-test { foo read-only } ;" eval ] unit-test
30 [ t ] [ r/w-test \ foo>> method "foldable" word-prop ] unit-test
31 [ t ] [ r/w-test \ foo>> method "flushable" word-prop ] unit-test
33 [ ] [ "IN: slots.tests TUPLE: r/w-test foo ;" eval ] unit-test
35 [ f ] [ r/w-test \ foo>> method "foldable" word-prop ] unit-test
36 [ t ] [ r/w-test \ foo>> method "flushable" word-prop ] unit-test
38 ! Test protocol slots
39 SLOT: my-protocol-slot-test
41 TUPLE: protocol-slot-test-tuple x ;
43 M: protocol-slot-test-tuple my-protocol-slot-test>> x>> sq ;
44 M: protocol-slot-test-tuple (>>my-protocol-slot-test) [ sqrt ] dip (>>x) ;
46 [ 9 ] [ T{ protocol-slot-test-tuple { x 3 } } my-protocol-slot-test>> ] unit-test
48 [ 4.0 ] [
49     T{ protocol-slot-test-tuple { x 3 } } clone
50     [ 7 + ] change-my-protocol-slot-test x>>
51 ] unit-test