2009-07-19 19:31:26 -04:00
|
|
|
USING: assocs sequences.abbrev tools.test ;
|
|
|
|
|
2015-07-03 12:39:59 -04:00
|
|
|
{ { "hello" "help" } } [
|
2009-07-19 19:31:26 -04:00
|
|
|
"he" { "apple" "hello" "help" } abbrev at
|
|
|
|
] unit-test
|
|
|
|
|
2015-07-03 12:39:59 -04:00
|
|
|
{ f } [
|
2009-07-19 19:31:26 -04:00
|
|
|
"he" { "apple" "hello" "help" } unique-abbrev at
|
|
|
|
] unit-test
|
|
|
|
|
2015-07-03 12:39:59 -04:00
|
|
|
{ { "apple" } } [
|
2009-07-19 19:31:26 -04:00
|
|
|
"a" { "apple" "hello" "help" } abbrev at
|
|
|
|
] unit-test
|
|
|
|
|
2015-07-03 12:39:59 -04:00
|
|
|
{ { "apple" } } [
|
2009-07-19 19:31:26 -04:00
|
|
|
"a" { "apple" "hello" "help" } unique-abbrev at
|
|
|
|
] unit-test
|
|
|
|
|
2015-07-03 12:39:59 -04:00
|
|
|
{ f } [
|
2009-07-19 19:31:26 -04:00
|
|
|
"a" { "hello" "help" } abbrev at
|
|
|
|
] unit-test
|
|
|
|
|
2015-07-03 12:39:59 -04:00
|
|
|
{ f } [
|
2009-07-19 19:31:26 -04:00
|
|
|
"a" { "hello" "help" } unique-abbrev at
|
|
|
|
] unit-test
|