acr-cli: init at 0.14 (#359508)
[NixPkgs.git] / pkgs / by-name / ra / ratchet / tests.nix
blob75ae285d734e34601543fce4f99eea649385664f
2   runCommand,
3   ratchet,
4 }: let
5   inherit (ratchet) pname version;
6 in
7   runCommand "${pname}-tests" {meta.timeout = 60;}
8   ''
9     set -euo pipefail
11     # Ensure ratchet is executable
12     ${ratchet}/bin/ratchet --version
13     ${ratchet}/bin/ratchet --help
15     touch $out
16   ''