mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 12:11:28 +00:00
20 lines
434 B
Nix
20 lines
434 B
Nix
|
import ./make-test.nix ({ pkgs, ... }: {
|
||
|
name = "trac";
|
||
|
meta = with pkgs.stdenv.lib.maintainers; {
|
||
|
maintainers = [ mmahut ];
|
||
|
};
|
||
|
|
||
|
nodes = {
|
||
|
machine = { ... }: {
|
||
|
services.trac.enable = true;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
testScript = ''
|
||
|
startAll;
|
||
|
$machine->waitForUnit("trac.service");
|
||
|
$machine->waitForOpenPort(8000);
|
||
|
$machine->waitUntilSucceeds("curl -L http://localhost:8000/ | grep 'Trac Powered'");
|
||
|
'';
|
||
|
})
|