Skip to content

Commit 7eacb92

Browse files
committed
add test.py
1 parent cd9a66b commit 7eacb92

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

comocma/test.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
if __name__ == "__main__":
2+
3+
import doctest
4+
import comocma
5+
import inspect
6+
7+
doctest.ELLIPSIS_MARKER = '***' # to be able to ignore an entire output,
8+
# putting the default '...' doesn't work for that.
9+
#print('doctesting `comocma`')
10+
print(doctest.testmod(comocma.como))

0 commit comments

Comments
 (0)