]> gitweb.factorcode.org Git - factor.git/blob - extra/base85/base85-tests.factor
more test IN: cleanup.
[factor.git] / extra / base85 / base85-tests.factor
1 USING: kernel strings tools.test ;
2
3 { t } [ "Hello, world" dup >base85 base85> >string = ] unit-test
4
5 { "NM!&3" } [ "He" >base85 >string ] unit-test
6 { t } [ "He" dup >base85 base85> >string = ] unit-test