nixpkgs/nixos/tests/simple.nix
2014-06-28 16:05:47 +02:00

13 lines
209 B
Nix

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