aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tests/test_internal.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_internal.py')
-rw-r--r--tests/test_internal.py11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/test_internal.py b/tests/test_internal.py
new file mode 100644
index 00000000..321c9f5c
--- /dev/null
+++ b/tests/test_internal.py
@@ -0,0 +1,11 @@
+from infini.internal import require
+from ipm import api
+
+import shutil
+
+
+def test_internal():
+ api.new("test_ipk")
+ registers = require("test_ipk")
+ assert registers
+ shutil.rmtree("test_ipk")