[Ubuntu] Add kotlin (#3755)

This commit is contained in:
mikhailshaganov
2021-07-22 11:31:30 +03:00
committed by GitHub
parent 05781ccad0
commit 966395f4bd
6 changed files with 53 additions and 1 deletions

View File

@@ -383,3 +383,29 @@ Describe "yq" {
"yq -V" | Should -ReturnZeroExitCode
}
}
Describe "Kotlin" {
It "kapt" {
"kapt -version"| Should -ReturnZeroExitCode
}
It "kotlin" {
"kotlin -version"| Should -ReturnZeroExitCode
}
It "kotlinc" {
"kotlinc -version"| Should -ReturnZeroExitCode
}
It "kotlinc-js" {
"kotlinc-js -version"| Should -ReturnZeroExitCode
}
It "kotlinc-jvm" {
"kotlinc-jvm -version"| Should -ReturnZeroExitCode
}
It "kotlin-dce-js" {
"kotlin-dce-js -version"| Should -ReturnZeroExitCode
}
}