wchisp: remove overuse of with lib (#357239)
[NixPkgs.git] / nixos / tests / portunus.nix
blob6fcae7e1c4cead74535d2a39dcbef88f8beddcc2
1 import ./make-test-python.nix ({ lib, ... }:
4   name = "portunus";
5   meta.maintainers = with lib.maintainers; [ SuperSandro2000 ];
7   nodes.machine = _: {
8     services.portunus = {
9       enable = true;
10       ldap.suffix = "dc=example,dc=org";
11     };
12   };
14   testScript = ''
15     machine.wait_for_unit("portunus.service")
16     machine.succeed("curl --fail -vvv http://localhost:8080/")
17   '';