mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
26 lines
555 B
Nix
26 lines
555 B
Nix
|
{ system ? builtins.currentSystem
|
||
|
, config ? { }
|
||
|
, pkgs ? import ../.. { inherit system config; }
|
||
|
}:
|
||
|
|
||
|
with import ../lib/testing-python.nix { inherit system pkgs; };
|
||
|
with pkgs.lib;
|
||
|
|
||
|
{
|
||
|
basic = makeTest {
|
||
|
name = "rshim";
|
||
|
meta.maintainers = with maintainers; [ nikstur ];
|
||
|
|
||
|
nodes.machine = { config, pkgs, ... }: {
|
||
|
services.rshim.enable = true;
|
||
|
};
|
||
|
|
||
|
testScript = { nodes, ... }: ''
|
||
|
machine.start()
|
||
|
machine.wait_for_unit("multi-user.target")
|
||
|
|
||
|
print(machine.succeed("systemctl status rshim.service"))
|
||
|
'';
|
||
|
};
|
||
|
}
|