nixpkgs/nixos/tests/lidarr.nix

19 lines
370 B
Nix
Raw Normal View History

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