Demo JATS test suite

test 286B

123456789101112131415161718192021
  1. #!/bin/bash
  2. shellfu import xcase
  3. xcase__enum() {
  4. xcase__permute Foo f0 f1 f2 \
  5. | xcase__per Bar b0 b1 b2
  6. }
  7. xcase__setup() {
  8. jat__cmd echo "$Foo" > Foo
  9. jat__cmd echo "$Bar" > Bar
  10. }
  11. xcase__test() {
  12. jat__cmd test -s Foo
  13. jat__cmd test -s Bar
  14. }
  15. xcase__run -v