mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
12 lines
210 B
Nix
12 lines
210 B
Nix
import ./make-test.nix {
|
|
name = "simple";
|
|
|
|
machine = { config, pkgs, ... }: { };
|
|
|
|
testScript =
|
|
''
|
|
startAll;
|
|
$machine->waitForUnit("multi-user.target");
|
|
$machine->shutdown;
|
|
'';
|
|
}
|