aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 35aa2e35b7ca88556b22c5b62692a5c99535d0f9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
test: test-sh test-elm test-nix

test-sh: tests/sh.sh
	src/extract-sh.sh tests/sh.sh | \
		jq .text -r | \
		cmp tests/expect

test-elm: tests/elm.elm
	src/extract-elm.sh tests/elm.elm | \
		jq .text -r | \
		cmp tests/expect

test-nix: tests/nix.nix
	src/extract-nix.sh tests/nix.nix | \
		jq .text -r | \
		cmp tests/expect