Skip to content

Commit 67a21ef

Browse files
Joel BennettJoel Bennett
authored andcommitted
Make the test describes unique
1 parent 4d9d155 commit 67a21ef

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

Tests/Invoke.Tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#requires -Module PowerShellLogging
2-
Describe "It should work when called from scripts run by PowerShell.Invoke" {
2+
Describe "Working when called inside PowerShell.Invoke" {
33

44
$Path = "TestDrive:\log.txt"
55
$Path = (Join-Path (Convert-Path (Split-Path $Path)) (Split-Path $Path -Leaf))

Tests/Remote.Tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#requires -Module PowerShellLogging
2-
Describe "It should work when called from scripts run by PowerShell.Invoke" {
2+
Describe "Working when called in a remote runspace" -Tag "Remoting" {
33

44
$Path = "TestDrive:\log.txt"
55
$Path = (Join-Path (Convert-Path (Split-Path $Path)) (Split-Path $Path -Leaf))

Tests/Runspace.Tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#requires -Module PowerShellLogging
2-
Describe "It should work when called from scripts run by PowerShell.Invoke" {
2+
Describe "Working when called in a parallel runspace" {
33

44
$Path = "TestDrive:\log.txt"
55
$Path = (Join-Path (Convert-Path (Split-Path $Path)) (Split-Path $Path -Leaf))

Tests/Simple.Tests.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#requires -Module PowerShellLogging
2-
Describe "It should work when called from scripts run by PowerShell.Invoke" {
2+
Describe "Working in scripts run locally in the host" {
33

44
$Path = "TestDrive:\log.txt"
55
$Path = (Join-Path (Convert-Path (Split-Path $Path)) (Split-Path $Path -Leaf))

0 commit comments

Comments
 (0)