From 5870036619b592d1c00ab184dd60923d0dce0d9a Mon Sep 17 00:00:00 2001 From: zztkm Date: Fri, 12 Aug 2022 22:25:42 +0900 Subject: [PATCH] :white_check_mark: update test --- vss_test.v | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/vss_test.v b/vss_test.v index e99eec7..950f4ac 100644 --- a/vss_test.v +++ b/vss_test.v @@ -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' +} \ No newline at end of file