vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / lidarr.nix
blob8230dda53736c713356a491743bc13d3ee690a94
1 import ./make-test-python.nix ({ lib, ... }:
4   name = "lidarr";
5   meta.maintainers = with lib.maintainers; [ etu ];
7   nodes.machine =
8     { pkgs, ... }:
9     { services.lidarr.enable = true; };
11   testScript = ''
12     start_all()
14     machine.wait_for_unit("lidarr.service")
15     machine.wait_for_open_port(8686)
16     machine.succeed("curl --fail http://localhost:8686/")
17   '';