mirror of
https://github.com/foo-dogsquared/nix-module-wrapper-manager-fds.git
synced 2025-01-31 10:58:24 +00:00
30 lines
682 B
Nix
30 lines
682 B
Nix
{ pkgs, lib, self }:
|
|
|
|
lib.runTests {
|
|
testsBuildSampleConfiguration = {
|
|
expr =
|
|
let
|
|
sampleConf = self.env.build {
|
|
inherit pkgs;
|
|
modules = [ ./wrapper-neofetch.nix ];
|
|
specialArgs.yourMomName = "Joe Mama";
|
|
};
|
|
in
|
|
lib.isDerivation sampleConf.config.build.toplevel;
|
|
expected = true;
|
|
};
|
|
|
|
testsBuildSampleConfiguration2 = {
|
|
expr =
|
|
let
|
|
sampleConf = self.env.build {
|
|
inherit pkgs;
|
|
modules = [ ./wrapper-fastfetch.nix ];
|
|
specialArgs.yourMomName = "Joe Mama";
|
|
};
|
|
in
|
|
lib.isDerivation sampleConf.config.build.toplevel;
|
|
expected = true;
|
|
};
|
|
}
|