2015-07-12 12:09:40 +02:00
|
|
|
import ./make-test.nix ({ pkgs, ...} : {
|
2014-07-01 16:28:23 +02:00
|
|
|
name = "simple";
|
2015-07-12 12:09:40 +02:00
|
|
|
meta = with pkgs.stdenv.lib.maintainers; {
|
|
|
|
maintainers = [ eelco ];
|
|
|
|
};
|
2010-09-13 18:06:07 +02:00
|
|
|
|
|
|
|
machine = { config, pkgs, ... }: { };
|
|
|
|
|
|
|
|
testScript =
|
|
|
|
''
|
|
|
|
startAll;
|
2014-04-14 14:02:44 +02:00
|
|
|
$machine->waitForUnit("multi-user.target");
|
2010-09-13 18:06:07 +02:00
|
|
|
$machine->shutdown;
|
|
|
|
'';
|
2015-07-12 12:09:40 +02:00
|
|
|
})
|