diff options
-rw-r--r-- | tests/api/test_eval.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/api/test_eval.py b/tests/api/test_eval.py index 26ac38a..40369f5 100644 --- a/tests/api/test_eval.py +++ b/tests/api/test_eval.py @@ -8,6 +8,9 @@ class TestEvalResource(SnekAPITestCase): cases = [ {"args": ["-c", "print('output')"]}, {"input": "print('hello')"}, + {"input": "print('hello')", "args": ["-c"]}, + {"input": "print('hello')", "args": [""]}, + {"input": "pass", "args": ["-m", "timeit"]}, ] for body in cases: with self.subTest(): |