colmena/integration-tests/exec/default.nix

16 lines
374 B
Nix
Raw Normal View History

2021-11-22 10:52:35 +01:00
let
tools = import ../tools.nix {};
in tools.makeTest {
name = "colmena-exec";
bundle = ./.;
testScript = ''
logs = deployer.succeed("cd /tmp/bundle && ${tools.colmenaExec} exec -v --on @target -- echo output from '$(hostname)' 2>&1")
assert "output from alpha" in logs
assert "output from beta" in logs
assert "output from gamma" in logs
'';
}