Skip to content
New issue

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

Module prefix in plain classes doesn't work #67

Closed
AndreasVolkmann opened this issue Aug 21, 2021 · 0 comments · Fixed by #68
Closed

Module prefix in plain classes doesn't work #67

AndreasVolkmann opened this issue Aug 21, 2021 · 0 comments · Fixed by #68
Assignees
Labels
bug Something isn't working
Milestone

Comments

@AndreasVolkmann
Copy link
Collaborator

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.

@AndreasVolkmann AndreasVolkmann added the bug Something isn't working label Aug 21, 2021
@AndreasVolkmann AndreasVolkmann added this to the 3.3.3 milestone Aug 21, 2021
@AndreasVolkmann AndreasVolkmann self-assigned this Aug 21, 2021
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
bug Something isn't working
Projects
None yet
Development

Successfully merging a pull request may close this issue.

1 participant