21 lines
266 B
Nix
21 lines
266 B
Nix
{
|
|
config,
|
|
lib,
|
|
pkgs,
|
|
...
|
|
}:
|
|
pkgs.testers.runNixOSTest {
|
|
name = "test of tests";
|
|
|
|
nodes.machine =
|
|
{ pkgs, ... }:
|
|
{
|
|
};
|
|
|
|
testScript = ''
|
|
start_all()
|
|
machine.wait_for_unit("multi-user.target")
|
|
machine.succeed("echo hello!")
|
|
'';
|
|
}
|