nixpkgs/nixos/tests/simple.nix

22 lines
381 B
Nix
Raw Normal View History

import ./make-test-python.nix (
{ pkgs, ... }:
{
name = "simple";
meta = with pkgs.lib.maintainers; {
maintainers = [ ];
};
nodes.machine =
{ ... }:
{
imports = [ ../modules/profiles/minimal.nix ];
};
testScript = ''
2019-11-05 00:39:28 +01:00
start_all()
machine.wait_for_unit("multi-user.target")
machine.shutdown()
'';
}
)