650d14be8d
svn path=/nixos/trunk/; revision=26990
11 lines
222 B
Nix
11 lines
222 B
Nix
{ nixpkgs
|
|
, system ? builtins.currentSystem
|
|
, networkExpr
|
|
}:
|
|
|
|
let nodes = import networkExpr; in
|
|
|
|
with import ../../../../lib/testing.nix { inherit nixpkgs system; };
|
|
|
|
(complete { inherit nodes; testScript = ""; }).driver
|