blob: bf376e596d95a0c1eb52364d9b631cb2c33a2774 (
plain)
1
2
3
4
5
6
7
|
import <nixpkgs/nixos/tests/make-test.nix> ( { pkgs, ... }: {
machine = import ../config/common.nix;
testScript = ''
$machine->waitForUnit("default.target");
$machine->succeed("uname") =~ /Linux/;
'';
})
|