mirror of
https://github.com/nix-community/disko
synced 2024-11-10 14:24:27 +00:00
24 lines
606 B
Nix
24 lines
606 B
Nix
{ pkgs ? import <nixpkgs> { }
|
|
, diskoLib ? pkgs.callPackage ../lib { }
|
|
}:
|
|
diskoLib.testLib.makeDiskoTest {
|
|
inherit pkgs;
|
|
name = "swap";
|
|
disko-config = ../example/swap.nix;
|
|
extraTestScript = ''
|
|
machine.succeed("mountpoint /");
|
|
machine.succeed("swapon --show >&2");
|
|
machine.succeed("""
|
|
lsblk --json |
|
|
jq -e '.blockdevices[] |
|
|
select(.name == "vda") |
|
|
.children[] |
|
|
select(.name == "vda3") |
|
|
.children[0].mountpoints[0] == "[SWAP]"
|
|
'
|
|
""");
|
|
'';
|
|
extraSystemConfig = {
|
|
environment.systemPackages = [ pkgs.jq ];
|
|
};
|
|
}
|