* In tests/default.nix, only import lib/testing.nix.

svn path=/nixos/trunk/; revision=20483
This commit is contained in:
Eelco Dolstra 2010-03-09 10:14:45 +00:00
parent 16e7565214
commit 358f3cd79c
2 changed files with 3 additions and 7 deletions

View file

@ -5,6 +5,8 @@ with pkgs;
rec {
inherit pkgs;
# Run an automated test suite in the given virtual network.
# `network' must be the result of a call to the

View file

@ -3,13 +3,7 @@
, system ? builtins.currentSystem
}:
let
testLib =
(import ../lib/build-vms.nix { inherit nixpkgs services system; }) //
(import ../lib/testing.nix { inherit nixpkgs services system; });
in with testLib;
with import ../lib/testing.nix { inherit nixpkgs services system; };
{
firefox = apply (import ./firefox.nix);