mirror of
https://github.com/nix-community/disko.git
synced 2024-11-09 20:02:37 +03:00
13 lines
308 B
Nix
13 lines
308 B
Nix
{ pkgs ? (import <nixpkgs> { })
|
|
, makeDiskoTest ? (pkgs.callPackage ./lib.nix { }).makeDiskoTest
|
|
}:
|
|
makeDiskoTest {
|
|
name = "zfs-over-legacy";
|
|
disko-config = ../example/zfs-over-legacy.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("test -e /zfs_fs");
|
|
machine.succeed("mountpoint /zfs_fs");
|
|
'';
|
|
}
|
|
|