mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
20 lines
333 B
Nix
20 lines
333 B
Nix
import ./make-test.nix {
|
|
name = "neo4j";
|
|
|
|
nodes = {
|
|
master =
|
|
{ ... }:
|
|
|
|
{
|
|
services.neo4j.enable = true;
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
startAll;
|
|
|
|
$master->waitForUnit("neo4j");
|
|
$master->sleep(20); # Hopefully this is long enough!!
|
|
$master->succeed("curl http://localhost:7474/");
|
|
'';
|
|
}
|