nixpkgs/nixos/tests/nixos-test-driver/busybox.nix
Robert Hensing 9d70dfd612
nixos/tests/nixos-test-driver/busybox: Improve name
Co-authored-by: Sandro <sandro.jaeckel@gmail.com>
2023-07-18 15:08:31 +02:00

17 lines
282 B
Nix

{
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")
'';
}