Skip to content

Instantly share code, notes, and snippets.

@schlundd
schlundd / german-tests.factor
Created November 1, 2011 22:15
math.text.german
! Copyright (C) 2011 Dominik Schlund.
! See http://factorcode.org/license.txt for BSD license.
USING: tools.test math.text.german ;
IN: math.text.german.tests
[ "null" ] [ 0 number>text ] unit-test
[ "eins" ] [ 1 number>text ] unit-test
[ "einundzwanzig" ] [ 21 number>text ] unit-test
[ "zweiundzwanzig" ] [ 22 number>text ] unit-test
[ "zweitausend" ] [ 2000 number>text ] unit-test