You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
provs/src/test/kotlin/org/domaindrivenarchitecture/provs/framework/extensions/server_software/k3s/application/CliKtTest.kt

14 lines
366 B
Kotlin

package org.domaindrivenarchitecture.provs.framework.extensions.server_software.k3s.application
import org.junit.jupiter.api.Disabled
import org.junit.jupiter.api.Test
internal class CliKtTest {
@Test
@Disabled // run manually -- todo mock execution
fun provision_remotely() {
main(arrayOf("-r", "192.168.56.141", "-u", "user", "-i"))
}
}