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