v2 / vlib / v / tests / builtin_strings_and_interpolation / string_alias_test.v
17 lines · 13 sloc · 283 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1type StrAlias = string
2
3fn test_alias_left_eq() {
4 assert StrAlias('test') == 'test'
5}
6
7fn test_alias_right_eq() {
8 assert 'test' == StrAlias('test')
9}
10
11fn test_alias_left_ne() {
12 assert StrAlias('test') != 'test2'
13}
14
15fn test_alias_right_ne() {
16 assert 'test' != StrAlias('test2')
17}
18