1
1
mirror of https://github.com/anoma/juvix.git synced 2024-12-13 11:16:48 +03:00
juvix/tests/smoke/Commands/eval.smoke.yaml
Łukasz Czajka 9db16ca87f
Fix 'function not found' error in juvix eval (#2178)
* Closes #2176

---------

Co-authored-by: Jan Mas Rovira <janmasrovira@gmail.com>
2023-06-06 13:26:43 +02:00

21 lines
376 B
YAML

working-directory: ./../../../tests/
tests:
- name: eval-file
command:
- juvix
- eval
- Compilation/positive/test001.juvix
stdin: ""
stdout: "11\n"
exit-status: 0
- name: eval-no-main
command:
- juvix
- eval
- positive/LambdaCalculus.juvix
stdin: ""
stdout: "function not found: main\n"
exit-status: 1