v2 / vlib / v / tests / left_padding_test.v
10 lines · 9 sloc · 213 bytes · 36ec2355b2ed5a6fac3087c00981313c6d2ff947
Raw
1module main
2
3fn test_main() {
4 // vfmt off
5 assert '[${8:-010}]' == '[8000000000]'
6 assert '[${8:010}]' == '[0000000008]'
7 assert '[${8:-10}]' == '[8 ]'
8 assert '[${8:10}]' == '[ 8]'
9 // vfmt on
10}
11