Release NixOS 23.11
[NixPkgs.git] / nixos / tests / prowlarr.nix
blobaf669afd57004dd79fea3c0ff998bba1eedd446a
1 import ./make-test-python.nix ({ lib, ... }:
4   name = "prowlarr";
5   meta.maintainers = with lib.maintainers; [ jdreaver ];
7   nodes.machine =
8     { pkgs, ... }:
9     { services.prowlarr.enable = true; };
11   testScript = ''
12     machine.wait_for_unit("prowlarr.service")
13     machine.wait_for_open_port(9696)
14     machine.succeed("curl --fail http://localhost:9696/")
15   '';