mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 07:01:54 +00:00
19 lines
371 B
Nix
19 lines
371 B
Nix
import ./make-test-python.nix ({ lib, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
name = "radarr";
|
|
meta.maintainers = with maintainers; [ etu ];
|
|
|
|
nodes.machine =
|
|
{ pkgs, ... }:
|
|
{ services.radarr.enable = true; };
|
|
|
|
testScript = ''
|
|
machine.wait_for_unit("radarr.service")
|
|
machine.wait_for_open_port(7878)
|
|
machine.succeed("curl --fail http://localhost:7878/")
|
|
'';
|
|
})
|