os/tests/second-test.nix

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

18 lines
225 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")
'';
}