python3Packages.xknx: 1.1.0 -> 1.2.0
[NixPkgs.git] / nixos / tests / sonarr.nix
blobbdfc8916cb7f946f4e1916d4b3d222b2ac7bd5a7
1 import ./make-test-python.nix ({ lib, ... }:
3 with lib;
6   name = "sonarr";
7   meta.maintainers = with maintainers; [ etu ];
9   nodes.machine =
10     { pkgs, ... }:
11     { services.sonarr.enable = true; };
13   testScript = ''
14     machine.wait_for_unit("sonarr.service")
15     machine.wait_for_open_port(8989)
16     machine.succeed("curl --fail http://localhost:8989/")
17   '';