v2 / vlib / v / tests / generics / modules / simplemodule / importing_test.v
11 lines · 9 sloc · 250 bytes · 6488041a749df9762348d019c4223908c476f2e2
Raw
1import simplemodule
2
3// this tests whether the tests can import the same module without any special
4// custom paths setup on the CLI
5fn test_iadd() {
6 assert simplemodule.iadd(10, 20) == 30
7}
8
9fn test_imul() {
10 assert simplemodule.imul(5, 8) == 40
11}
12