10 lines
404 B
Factor
10 lines
404 B
Factor
! Copyright (C) 2012 John Benediktsson
|
|
! See http://factorcode.org/license.txt for BSD license
|
|
USING: sequences.rotated strings tools.test ;
|
|
|
|
{ "fasd" } [ "asdf" -1 <rotated> >string ] unit-test
|
|
{ "sdfa" } [ "asdf" 1 <rotated> >string ] unit-test
|
|
{ "asdf" } [ "asdf" 0 <rotated> >string ] unit-test
|
|
{ "asdf" } [ "asdf" 4 <rotated> >string ] unit-test
|
|
{ "asdf" } [ "asdf" -4 <rotated> >string ] unit-test
|