43 lines
483 B
PowerShell
43 lines
483 B
PowerShell
BeforeDiscovery {
|
|
|
|
}
|
|
|
|
BeforeAll {
|
|
|
|
}
|
|
|
|
Describe "Testing Pester symbols" {
|
|
Context "When a Pester file is given" {
|
|
BeforeAll {
|
|
|
|
}
|
|
|
|
BeforeEach {
|
|
|
|
}
|
|
|
|
It "Should return it symbols" {
|
|
|
|
}
|
|
|
|
It "Should return context symbols" {
|
|
|
|
}
|
|
|
|
It "Should return describe symbols" {
|
|
|
|
}
|
|
|
|
It "Should return setup and teardown symbols" {
|
|
|
|
}
|
|
|
|
AfterEach {
|
|
|
|
}
|
|
}
|
|
|
|
AfterAll {
|
|
|
|
}
|
|
}
|