mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-04 14:21:02 +03:00
7f797a698f
* wastebin: init at 2.4.3 * nixos/wastebin: init Add module and test for wastebin
20 lines
407 B
Nix
20 lines
407 B
Nix
import ./make-test-python.nix ({ pkgs, lib, ... }: {
|
|
name = "wastebin";
|
|
|
|
meta = {
|
|
maintainers = with lib.maintainers; [ pinpox ];
|
|
};
|
|
|
|
nodes.machine = { pkgs, ... }: {
|
|
services.wastebin = {
|
|
enable = true;
|
|
};
|
|
};
|
|
|
|
testScript = ''
|
|
machine.wait_for_unit("wastebin.service")
|
|
machine.wait_for_open_port(8088)
|
|
machine.succeed("curl --fail http://localhost:8088/")
|
|
'';
|
|
})
|