nixVersions.stable: 2.15 -> 2.17
[NixPkgs.git] / nixos / tests / nzbhydra2.nix
blobe1d528cd9520e994838305bdad88ed23f3e3b5f4
1 import ./make-test-python.nix ({ lib, ... }:
2   {
3     name = "nzbhydra2";
4     meta.maintainers = with lib.maintainers; [ jamiemagee ];
6     nodes.machine = { pkgs, ... }: { services.nzbhydra2.enable = true; };
8     testScript = ''
9       machine.start()
10       machine.wait_for_unit("nzbhydra2.service")
11       machine.wait_for_open_port(5076)
12       machine.succeed("curl --fail http://localhost:5076/")
13     '';
14   })