diff --git a/tests/test_submodules.py b/tests/test_submodules.py index 5e09e8c..e69de29 100644 --- a/tests/test_submodules.py +++ b/tests/test_submodules.py @@ -1,14 +0,0 @@ -from qadence_core.platforms.model import Parameter, Instruction -from qadence_core.expressions.expr import Expr - - -def test_model_calls(): - assert Parameter("theta", 1, mutable=False) - assert Parameter("omega", 1, mutable=True) - assert Instruction("not", (0,)) - assert Instruction("rx", (1,), Parameter("theta1", 1, mutable=False)) - - -def test_expr_call(): - assert Expr("a") - assert Expr("a") + Expr("b")