We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e128f3f commit d3beec2Copy full SHA for d3beec2
tests/Environment.Tests.ps1
@@ -0,0 +1,13 @@
1
+BeforeAll {
2
+ # Minimal test file for validation purposes
3
+}
4
+
5
+Describe 'Environment' {
6
+ It 'Should have PowerShell available' {
7
+ $PSVersionTable.PSVersion | Should -Not -BeNullOrEmpty
8
+ }
9
10
+ It 'Should have expected OS platform' {
11
+ $PSVersionTable.Platform | Should -BeIn @('Win32NT', 'Unix')
12
13
tests/PSModuleTest.Tests.ps1
+Describe 'PSModuleTest' {
+ It 'Should pass basic test' {
+ $true | Should -Be $true
+ It 'Should have test context available' {
+ $PSScriptRoot | Should -Not -BeNullOrEmpty
0 commit comments