summaryrefslogtreecommitdiffhomepage
path: root/test/test_wasm_component.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_wasm_component.py')
-rw-r--r--test/test_wasm_component.py18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/test_wasm_component.py b/test/test_wasm_component.py
deleted file mode 100644
index 6d3bc485..00000000
--- a/test/test_wasm_component.py
+++ /dev/null
@@ -1,18 +0,0 @@
-import pytest
-from unit.applications.lang.wasm_component import ApplicationWasmComponent
-
-prerequisites = {
- 'modules': {'wasm-wasi-component': 'any'},
- 'features': {'cargo_component': True},
-}
-
-client = ApplicationWasmComponent()
-
-
-def test_wasm_component():
- client.load('hello_world')
-
- req = client.get()
-
- assert client.get()['status'] == 200
- assert req['body'] == 'Hello'