This commit is contained in:
zztkm 2022-08-12 22:18:08 +09:00
parent 50da9bc8fd
commit 16a82b4607

View file

@ -7,13 +7,3 @@ fn normalise_paths(paths []string) []string {
res.sort()
return res
}
fn test_get_paths() {
testpath := 'testfiles'
mds := normalise_paths(get_paths(testpath))
assert mds.len == 2
assert mds == [
'testfiles/aaa.md',
'testfiles/bbb.md',
]
}