run the output-template test
This commit is contained in:
parent
e1293e3778
commit
024c018262
@ -1,3 +1,3 @@
|
|||||||
check:
|
check:
|
||||||
./output-template '{{' '}}' < example.ini > output
|
fennelrepl ./test.fnl '{{' '}}' < example.ini > output
|
||||||
diff -u output example.ini.expected
|
diff -u output example.ini.expected
|
||||||
|
@ -2,6 +2,7 @@
|
|||||||
fetchurl,
|
fetchurl,
|
||||||
writeFennel,
|
writeFennel,
|
||||||
fennel,
|
fennel,
|
||||||
|
fennelrepl,
|
||||||
runCommand,
|
runCommand,
|
||||||
lua,
|
lua,
|
||||||
anoia,
|
anoia,
|
||||||
@ -17,6 +18,7 @@ stdenv.mkDerivation {
|
|||||||
src = ./.;
|
src = ./.;
|
||||||
|
|
||||||
buildInputs = [ lua ];
|
buildInputs = [ lua ];
|
||||||
|
nativeBuildInputs = [ fennelrepl ] ;
|
||||||
# doCheck = true;
|
# doCheck = true;
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
@ -31,6 +33,7 @@ stdenv.mkDerivation {
|
|||||||
mainFunction = "run";
|
mainFunction = "run";
|
||||||
} ./watch-outputs.fnl
|
} ./watch-outputs.fnl
|
||||||
} ${name}
|
} ${name}
|
||||||
|
make check
|
||||||
'';
|
'';
|
||||||
# checkPhase = "make check";
|
# checkPhase = "make check";
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
(fn [service-path path]
|
(fn [service-path path]
|
||||||
(let [s (assert (svc.open (.. service-path "/.outputs")))]
|
(let [s (assert (svc.open (.. service-path "/.outputs")))]
|
||||||
(s:output path)))
|
(s:output path)))
|
||||||
:lua_quote #(string.format "%q" %1)
|
:lua_quote #(string.format "%q" $1)
|
||||||
:json_quote (fn [x] (.. "\"" (json-escape x) "\""))
|
:json_quote (fn [x] (.. "\"" (json-escape x) "\""))
|
||||||
}]
|
}]
|
||||||
(string.gsub text delim
|
(string.gsub text delim
|
||||||
|
Loading…
Reference in New Issue
Block a user