| 1 | import simplemodule |
| 2 | |
| 3 | // this tests whether the tests can import the same module without any special |
| 4 | // custom paths setup on the CLI |
| 5 | fn test_iadd() { |
| 6 | assert simplemodule.iadd(10, 20) == 30 |
| 7 | } |
| 8 | |
| 9 | fn test_imul() { |
| 10 | assert simplemodule.imul(5, 8) == 40 |
| 11 | } |
| 12 | |