15 lines
362 B
V
15 lines
362 B
V
module commands
|
|
|
|
fn test_get_html_filename() {
|
|
test_path := 'index.md'
|
|
mut html_name := get_html_path(test_path)
|
|
assert html_name == 'index.html'
|
|
|
|
test_path_2 := './post/example-post.md'
|
|
html_name = get_html_path(test_path_2)
|
|
$if windows {
|
|
assert html_name == '.\\post\\example-post.html'
|
|
} $else {
|
|
assert html_name == './post/example-post.html'
|
|
}
|
|
}
|