os/tests/second-test.nix

14 lines
204 B
Nix
Raw Normal View History

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