update test

This commit is contained in:
zztkm 2022-08-12 22:25:42 +09:00
parent 67e1a6cf25
commit 5870036619

View file

@ -7,3 +7,9 @@ fn normalise_paths(paths []string) []string {
res.sort()
return res
}
fn test_get_html_filename() {
test_path := 'index.md'
html_name := get_html_filename(test_path)
assert html_name == 'index.html'
}