1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00
v/vlib/compiler/tests/enum_test.v

57 lines
793 B
V
Raw Normal View History

2019-07-13 09:45:40 +03:00
enum Color {
red
blue
green
}
fn test_enum() {
assert Color.red == .red
assert Color.blue == .blue
assert Color.green == .green
2019-10-30 16:38:47 +03:00
assert Color.red != .blue
assert Color.red != .green
assert Color.blue != .green
2019-07-13 09:45:40 +03:00
mut color := Color.red
2019-10-30 16:38:47 +03:00
assert color == .red
2019-07-13 09:45:40 +03:00
color = .green
2019-10-30 16:38:47 +03:00
assert color == .green
2019-07-13 09:45:40 +03:00
}
2019-10-24 14:56:02 +03:00
fn test_in() {
color := Color.red
num := 3 // used to be an expr bug before `in`
2019-10-24 14:56:02 +03:00
assert color in [.red, .green]
assert num == 3
2019-12-18 05:45:48 +03:00
println(color)
assert true
}
fn test_match() {
2019-12-18 05:45:48 +03:00
color := Color.green
num := 3
match color {
2019-12-18 05:45:48 +03:00
.red { assert false }
.green { assert true }
else { assert false }
2019-12-18 05:45:48 +03:00
}
println(color)
assert num == 3
2019-12-18 05:45:48 +03:00
}
2019-12-21 10:35:29 +03:00
enum Foo {
a = 1
b = 2
c = 3
d = -10
}
fn test_nums() {
foo := Foo.a
assert foo == 1
assert Foo.c == 3
d := Foo.d
assert d == -10
}