2013-04-04 13:39:43 -04:00
|
|
|
USING: kernel strings tools.test ;
|
|
|
|
IN: base85
|
|
|
|
|
|
|
|
{ t } [ "Hello, world" dup >base85 base85> >string = ] unit-test
|
2013-04-04 14:43:17 -04:00
|
|
|
|
|
|
|
{ "NM!&3" } [ "He" >base85 >string ] unit-test
|
|
|
|
{ t } [ "He" dup >base85 base85> >string = ] unit-test
|