tests/misc: Add test for cexample module.

This also moves the existing test for cexample.add_ints
originally done in extra_coverage.

Signed-off-by: Laurens Valk <laurens@pybricks.com>
This commit is contained in:
Laurens Valk
2022-11-21 15:13:24 +01:00
committed by Damien George
parent d75f49c0f0
commit 1d27c7d423
4 changed files with 16 additions and 6 deletions

View File

@@ -0,0 +1,14 @@
# test custom builtin module
try:
import cexample
except ImportError:
print("SKIP")
raise SystemExit
print(cexample)
d = dir(cexample)
d.index("add_ints")
print(cexample.add_ints(1, 3))

View File

@@ -0,0 +1,2 @@
<module 'cexample'>
4