diff --git a/vss_test.v b/vss_test.v index 973b287..e99eec7 100644 --- a/vss_test.v +++ b/vss_test.v @@ -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', - ] -}