factor/basis/vocabs/metadata/resources/resources-tests.factor

33 lines
839 B
Factor
Raw Normal View History

! (c)2010 Joe Groff bsd license
USING: arrays globs sorting tools.test vocabs.metadata.resources ;
IN: vocabs.metadata.resources.tests
! match-pattern
{ { "hello.txt" } } [
"*.txt" { "hello.txt" } match-pattern
] unit-test
[
"*.txt" { "foo.bar" "foo.factor" } match-pattern
] [ resource-missing? ] must-fail-with
! vocab-resource-files
{ { "bar" "bas" "foo" } }
[ "vocabs.metadata.resources.test.1" vocab-resource-files natural-sort ] unit-test
{ { "bar.wtf" "foo.wtf" } }
[ "vocabs.metadata.resources.test.2" vocab-resource-files natural-sort ] unit-test
{
{
"resource-dir"
"resource-dir/bar"
"resource-dir/bas"
"resource-dir/bas/zang"
"resource-dir/bas/zim"
"resource-dir/foo"
}
} [
"vocabs.metadata.resources.test.3" vocab-resource-files natural-sort
] unit-test