v2 / vlib / term / ui / ui_test.v
8 lines · 6 sloc · 180 bytes · 166dd61e900a5c97be5f4a5cf8105603ae6a0f32
Raw
1import term.ui
2
3// This test just ensures that programs importing term.ui can compile
4
5fn test_a_simple_term_ui_program_can_be_compiled() {
6 println(ui.color_table)
7 assert true
8}
9