nixpkgs/nixos/tests/neo4j.nix

21 lines
316 B
Nix
Raw Normal View History

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