nixpkgs/nixos/tests/simple.nix
2014-07-01 16:28:34 +02:00

13 lines
210 B
Nix

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