depot/third_party/home-manager/tests/modules/programs/sbt/deprecated-options.nix
Default email 2eafb8192e Project import generated by Copybara.
GitOrigin-RevId: 176e455371a8371586e8a3ff0d56ee9f3ca2324e
2023-01-10 02:35:00 -07:00

18 lines
461 B
Nix

{ ... }:
{
programs.sbt = {
enable = true;
baseConfigPath = "gone";
};
test.stubs.sbt = { };
test.asserts.assertions.expected = [
(let offendingFile = toString ./deprecated-options.nix;
in ''
The option definition `programs.sbt.baseConfigPath' in `${offendingFile}' no longer has any effect; please remove it.
Use programs.sbt.baseUserConfigPath instead, but note that the semantics are slightly different.
'')
];
}