mirror of
https://github.com/sbrow/zomq.git
synced 2026-08-26 10:53:32 -04:00
14 lines
155 B
Odin
14 lines
155 B
Odin
#+test
|
|
|
|
package zmq
|
|
|
|
import "core:testing"
|
|
|
|
@(test)
|
|
test_error_type :: proc(t: ^testing.T) {
|
|
e: Error = .EFSM
|
|
|
|
testing.expect_value(t, size_of(e), 8)
|
|
}
|
|
|