aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tests
diff options
context:
space:
mode:
Diffstat (limited to 'tests')
-rw-r--r--tests/test_api.py50
1 files changed, 25 insertions, 25 deletions
diff --git a/tests/test_api.py b/tests/test_api.py
index f495ef5..caba429 100644
--- a/tests/test_api.py
+++ b/tests/test_api.py
@@ -1,38 +1,38 @@
-from ipm import api
+# from ipm import api
-import shutil
+# import shutil
-def test_new():
- api.new("test")
- shutil.rmtree("test", ignore_errors=True)
+# def test_new():
+# api.new("test")
+# shutil.rmtree("test", ignore_errors=True)
-def test_build():
- api.new("test")
- api.build("test")
- shutil.rmtree("test", ignore_errors=True)
+# def test_build():
+# api.new("test")
+# api.build("test")
+# shutil.rmtree("test", ignore_errors=True)
-def test_extract():
- api.new("test")
- api.build("test")
- api.extract("./test/dist/test-0.1.0.ipk")
- shutil.rmtree("test", ignore_errors=True)
+# def test_extract():
+# api.new("test")
+# api.build("test")
+# api.extract("./test/dist/test-0.1.0.ipk")
+# shutil.rmtree("test", ignore_errors=True)
-def test_install():
- api.new("test")
- api.build("test")
- api.install("./test/dist/test-0.1.0.ipk")
- shutil.rmtree("test", ignore_errors=True)
+# def test_install():
+# api.new("test")
+# api.build("test")
+# api.install("./test/dist/test-0.1.0.ipk")
+# shutil.rmtree("test", ignore_errors=True)
-def test_uninstall():
- api.uninstall("test", is_confirm=True)
+# def test_uninstall():
+# api.uninstall("test", is_confirm=True)
-def test_check():
- api.new("test")
- api.check("test")
- shutil.rmtree("test", ignore_errors=True)
+# def test_check():
+# api.new("test")
+# api.check("test")
+# shutil.rmtree("test", ignore_errors=True)