home-manager/tests/modules/programs/poetry/default-settings.nix

16 lines
352 B
Nix

{ pkgs, ... }:
{
programs.poetry = { enable = true; };
test.stubs.poetry = { };
nmt.script = let
expectedConfDir =
if pkgs.stdenv.isDarwin then "Library/Application Support" else ".config";
expectedConfigPath = "home-files/${expectedConfDir}/pypoetry/config.toml";
in ''
assertPathNotExists "${expectedConfigPath}"
'';
}