Files
herolib/lib/core/texttools/indent_test.v
2024-12-25 09:23:31 +01:00

16 lines
124 B
V

module texttools
fn test_dedent() {
mut text := '
a
b
c
d
'
text = dedent(text)
assert text.len == 20
}