os/tests/second-test.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
204 B
Nix
Raw Permalink Normal View History

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