blob: a38b3c4b0230a0bd0226bb731a271db29a2ac2f2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
test: test-elm test-nix
test-elm: tests/elm.elm
./extract-elm.sh tests/elm.elm | \
jq .text -r | \
cmp tests/expect
test-nix: tests/nix.nix
./extract-nix.sh tests/nix.nix | \
jq .text -r | \
cmp tests/expect
|