notes: 2.3.0 -> 2.3.1 (#352950)
[NixPkgs.git] / nixos / tests / nzbhydra2.nix
blob6262a50b4be0e21e8a4974a3e731fbfce7254e6b
1 import ./make-test-python.nix ({ lib, ... }:
2   {
3     name = "nzbhydra2";
4     meta.maintainers = with lib.maintainers; [ matteopacini ];
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   })