about summary refs log tree commit diff
path: root/nixos/tests/simple.nix
blob: 1cd9058f9e54189f74bc46423f1356cbcd5fc24f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
import ./make-test.nix {
  name = "simple";

  machine = { config, pkgs, ... }: { };

  testScript =
    ''
      startAll;
      $machine->waitForUnit("multi-user.target");
      $machine->shutdown;
    '';
}