Skip to content

Commit 0c03c4b

Browse files
committed
feat: add basic import module tests
1 parent b114607 commit 0c03c4b

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
import importlib
2+
import importlib.util
3+
import synlink
4+
5+
def test_import_module():
6+
assert importlib.import_module("synlink") is synlink
7+
8+
def test_import_error():
9+
assert importlib.import_module("synlink.error") is synlink.error

0 commit comments

Comments
 (0)