catala/tests/test_proof/good/duration.catala_en

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
547 B
Plaintext
Raw Normal View History

## Test
```catala
declaration scope A:
2023-06-03 19:02:57 +03:00
internal x content duration
output y content boolean
scope A:
definition x equals 94 day
definition y under condition (x + x) > 100 day consequence equals true
definition y under condition (x + x) <= 100 day consequence equals false
```
```catala-test-inline
$ catala Typecheck --check-invariants
[RESULT] All invariant checks passed
[RESULT] Typechecking successful!
```
```catala-test-inline
$ catala Proof --disable-counterexamples
[RESULT] No errors found during the proof mode run.
```