aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorLibravatar Fabian Kirchner <kirchner@posteo.de>2023-09-05 13:55:07 +0200
committerLibravatar Fabian Kirchner <kirchner@posteo.de>2023-09-05 13:55:07 +0200
commit4a098b7717d876e8d0004e376972bdcc76812783 (patch)
tree983a82fa8fa15fa0aa4b14337017d55a42b57c94 /Makefile
parent208e15c62d32c1604f2a70b4a6f630397330b869 (diff)
add tests
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..a38b3c4
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,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