13 lines
210 B
Nix
13 lines
210 B
Nix
import ./make-test.nix {
|
|
name = "simple";
|
|
|
|
machine = { config, pkgs, ... }: { };
|
|
|
|
testScript =
|
|
''
|
|
startAll;
|
|
$machine->waitForUnit("multi-user.target");
|
|
$machine->shutdown;
|
|
'';
|
|
}
|