mirror of
https://github.com/nix-community/disko.git
synced 2024-11-04 05:44:29 +03:00
13 lines
288 B
Nix
13 lines
288 B
Nix
{ pkgs ? import <nixpkgs> { }
|
|
, diskoLib ? pkgs.callPackage ../lib { }
|
|
}:
|
|
diskoLib.testLib.makeDiskoTest {
|
|
inherit pkgs;
|
|
name = "tmpfs";
|
|
disko-config = ../example/tmpfs.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("mountpoint /");
|
|
machine.succeed("mountpoint /tmp");
|
|
'';
|
|
}
|