Merge branch 'master' of git://factorcode.org/git/factor
[factor/jcg.git] / extra / multi-methods / tests / legacy.factor
blobf4bd0a00b224bcb973b949e23b0c2e9c0caedb1e
1 IN: multi-methods.tests
2 USING: math strings sequences tools.test ;
4 GENERIC: legacy-test
6 M: integer legacy-test sq ;
7 M: string legacy-test " hey" append ;
9 [ 25 ] [ 5 legacy-test ] unit-test
10 [ "hello hey" ] [ "hello" legacy-test ] unit-test