nixpkgs/nixos/tests/jackett.nix

20 lines
394 B
Nix
Raw Normal View History

2019-11-09 20:31:06 +01:00
import ./make-test-python.nix ({ lib, ... }:
with lib;
2019-08-13 23:52:01 +02:00
{
name = "jackett";
meta.maintainers = with maintainers; [ etu ];
nodes.machine =
{ pkgs, ... }:
{ services.jackett.enable = true; };
testScript = ''
2019-11-09 20:31:06 +01:00
machine.start()
machine.wait_for_unit("jackett.service")
machine.wait_for_open_port(9117)
machine.succeed("curl --fail http://localhost:9117/")
'';
})