catala/examples/tutoriel_fr
Louis Gesbert 0ab7a0f9ce Turn all existing tests to inline tests
Done using
```bash
process() { FILE=$1; awk 'match($0, /^```catala-test *{ *id *= *"(.*)" *}/, a) {print "```catala-test-inline"; f="'"$(dirname $FILE)/output/$(basename $FILE)"'." a[1]; getline; print "$ " $0; while ((getline<f) > 0) print; next} {print}' $FILE >$FILE.new; mv $FILE.new $FILE; }
for f in tests/test_*/*/*.catala_* examples/**/*.catala_*; do process $f; git add $f; done
for d in $(find -name output -type d); do git rm -r $d; done
```
2022-09-23 14:45:10 +02:00
..
tests Turn all existing tests to inline tests 2022-09-23 14:45:10 +02:00
.gitignore Improved OCaml backend, made dev loop 2021-01-28 18:30:01 +01:00
Makefile fix(examples): syntax error (tutorial_fr instead of tutoriel_fr) 2021-06-04 11:37:44 +02:00
tutoriel_fr.catala_fr feat(backends/html): improve the code generation with ToC and details tags 2022-08-05 10:55:45 +02:00