1
1
mirror of https://github.com/anoma/juvix.git synced 2025-01-05 22:46:08 +03:00
juvix/tests/smoke/Commands/dev/core.smoke.yaml

46 lines
794 B
YAML
Raw Normal View History

working-directory: ./../../../../tests
tests:
- name: core-from-concrete-eval
command:
- juvix
- dev
- core
- from-concrete
- --eval
args:
- positive/Internal/LiteralInt.juvix
stdout: |
suc (suc zero)
exit-status: 0
- name: core-from-concrete-eval
command:
- juvix
- dev
- core
- from-concrete
- --eval
- --transforms
- nat-to-int
args:
- positive/Internal/LiteralInt.juvix
stdout: |
2
exit-status: 0
- name: core-from-concrete-eval-s
command:
- juvix
- dev
- core
- from-concrete
- --eval
- --symbol-name
- f
args:
- positive/Internal/LiteralInt.juvix
stdout: |
suc zero
exit-status: 0