nixpkgs/tests/simple.nix
Eelco Dolstra 0fccd7bb49 * Add a trivial test that just starts a machine and shuts it down.
svn path=/nixos/trunk/; revision=23765
2010-09-13 16:06:07 +00:00

12 lines
133 B
Nix

{ pkgs, ... }:
{
machine = { config, pkgs, ... }: { };
testScript =
''
startAll;
$machine->shutdown;
'';
}