nixpkgs/nixos/tests/lidarr.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
381 B
Nix
Raw Normal View History

import ./make-test-python.nix ({ lib, ... }:
2019-08-13 21:52:01 +00:00
{
name = "lidarr";
meta.maintainers = with lib.maintainers; [ etu ];
nodes.machine =
{ pkgs, ... }:
{ services.lidarr.enable = true; };
testScript = ''
start_all()
machine.wait_for_unit("lidarr.service")
machine.wait_for_open_port(8686)
machine.succeed("curl --fail http://localhost:8686/")
'';
})