mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-11-10 01:33:11 +01:00
12 lines
188 B
Nix
12 lines
188 B
Nix
import ./make-test-python.nix {
|
|
name = "simple";
|
|
|
|
nodes.machine = { };
|
|
|
|
testScript = ''
|
|
start_all()
|
|
machine.wait_for_unit("multi-user.target")
|
|
machine.shutdown()
|
|
'';
|
|
}
|