mirror of
https://github.com/waku-org/nwaku.git
synced 2025-01-16 01:45:40 +00:00
12 lines
195 B
Nim
12 lines
195 B
Nim
import unittest2
|
|
|
|
suite "goats":
|
|
test "pigs":
|
|
echo "oink"
|
|
check true
|
|
|
|
test "horses":
|
|
expect ValueError:
|
|
echo "ney"
|
|
raise newException(ValueError, "you made an error")
|