about summary refs log tree commit diff
path: root/nixpkgs/nixos/tests/nixos-test-driver/busybox.nix
blob: 426f4494436e2f89cb671e37f07c47e04908dfe3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
  name = "Test that basic tests work when busybox is installed";

  nodes = {
    machine = ({ pkgs, ... }: {
      environment.systemPackages = [
        pkgs.busybox
      ];
    });
  };

  testScript = ''
    start_all()
    machine.wait_for_unit("multi-user.target")
  '';
}