mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
10 lines
204 B
Nix
10 lines
204 B
Nix
{ system ? builtins.currentSystem
|
|
, networkExpr
|
|
}:
|
|
|
|
let nodes = import networkExpr; in
|
|
|
|
with import ../../../../lib/testing.nix { inherit system; };
|
|
|
|
(makeTest { inherit nodes; testScript = ""; }).driver
|