/shell Secret
Created
August 7, 2019 14:27
failing at nix testing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[exarkun@baryon:~/Work/PrivateStorage/PrivateStorageio]$ nix eval --file nixos/lib/tests/test_ini.nix | |
error: more arguments are required | |
Try 'nix --help' for more information. | |
[exarkun@baryon:~/Work/PrivateStorage/PrivateStorageio]$ nix eval --file nixos/lib/tests/test_ini.nix '' | |
[ ] | |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
let | |
pkgs = import <nixpkgs> { }; | |
ini = import ../ini.nix; | |
in | |
pkgs.lib.runTests | |
{ empty = | |
{ name = "empty"; | |
expected = ""; | |
expr = ini.allConfigSectionsText { }; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment