650d14be8d
svn path=/nixos/trunk/; revision=26990
10 lines
222 B
Nix
10 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
|