mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
21 lines
428 B
Nix
21 lines
428 B
Nix
import ./make-test-python.nix (
|
|
{ lib, ... }:
|
|
{
|
|
name = "commafeed";
|
|
|
|
nodes.server = {
|
|
services.commafeed = {
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
server.start()
|
|
server.wait_for_unit("commafeed.service")
|
|
server.wait_for_open_port(8082)
|
|
server.succeed("curl --fail --silent http://localhost:8082")
|
|
'';
|
|
|
|
meta.maintainers = [ lib.maintainers.raroh73 ];
|
|
}
|
|
)
|