nixpkgs/nixos/tests/neo4j.nix

21 lines
319 B
Nix
Raw Permalink Normal View History

import ./make-test-python.nix {
2019-02-01 14:29:54 +01:00
name = "neo4j";
nodes = {
master =
{ ... }:
{
services.neo4j.enable = true;
};
};
testScript = ''
start_all()
2019-02-01 14:29:54 +01:00
master.wait_for_unit("neo4j")
master.wait_for_open_port(7474)
2020-09-16 08:03:14 +02:00
master.succeed("curl -f http://localhost:7474/")
2019-02-01 14:29:54 +01:00
'';
}