Implement Pester tests

This commit is contained in:
Maxim Lobanov
2020-07-09 10:53:29 +03:00
parent c6950533af
commit 148b628e0b
19 changed files with 207 additions and 208 deletions

View File

@@ -0,0 +1,17 @@
Describe "7-Zip" {
It "7z" {
"7z" | Should -ReturnZeroExitCode
}
}
Describe "CMake" {
It "cmake" {
"cmake --version" | Should -ReturnZeroExitCode
}
}
Describe "Kind" {
It "Kind" {
"kind version" | Should -ReturnZeroExitCode
}
}