nixpkgs/nixos/tests/readarr.nix

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

15 lines
375 B
Nix
Raw Normal View History

import ./make-test-python.nix ({ lib, ... }: {
2023-03-12 19:54:23 +00:00
name = "readarr";
meta.maintainers = with lib.maintainers; [ jocelynthode ];
2023-03-12 19:54:23 +00:00
nodes.machine =
{ pkgs, ... }:
{ services.readarr.enable = true; };
testScript = ''
machine.wait_for_unit("readarr.service")
machine.wait_for_open_port(8787)
machine.succeed("curl --fail http://localhost:8787/")
'';
})