os/tests/second-test.nix

14 lines
204 B
Nix
Raw Normal View History

2022-11-20 22:28:23 +00:00
{}: {
name = "secondTest";
2022-11-20 22:28:23 +00:00
nodes.test-machine2 = {suites ? null, ...}: {
imports = [
suites.iso
];
};
testScript = ''
machines[0].systemctl("is-system-running --wait")
'';
}