We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The following test fails.
@Test fun `common prefix per module - inner classes`() { // Arrange val prefix = "database" val expectedPort = 199 class Nested(val port: Int) class Config { val database: Nested by module { this.prefix = "database" } } // Act val config = Arkenv.parse<Config>(arrayOf("--$prefix-port", expectedPort.toString())) // Assert expectThat(config.database).get { port } isEqualTo expectedPort }
The module prefix in plain classes is not applied.
The text was updated successfully, but these errors were encountered:
AndreasVolkmann
Successfully merging a pull request may close this issue.
The following test fails.
The module prefix in plain classes is not applied.
The text was updated successfully, but these errors were encountered: