├── Commands └── Cmdlets │ ├── ClearRecycleBin.Tests.ps1 │ ├── ClearRecycleBinHelperFunctions.psm1 │ ├── Clipboard.Tests.ps1 │ ├── ClipboardHelperFunctions.psm1 │ ├── FormatHex.Tests.ps1 │ ├── HelperMethods.psm1 │ ├── MiscCmdletUpdates.Tests.ps1 │ ├── NewGuid.Tests.ps1 │ ├── NewTemporaryFile.Tests.ps1 │ ├── PSODataUtils.HelperMethods.psm1 │ ├── Pester.Commands.Cmdlets.NoNewlineParameter.Tests.ps1 │ ├── Pester.Commands.Cmdlets.StartProcessWaitPassThru.Tests.ps1 │ ├── Pester.ConvertString.Tests.ps1 │ ├── Pester.DelimitedText.Tests.ps1 │ ├── Pester.History.Tests.ps1 │ ├── Pester.Management.Copy.Item.Tests.ps1 │ ├── StringManipulationData │ └── ConvertString │ │ ├── incorrect-examples.csv │ │ └── replace-name-by-empty.csv │ ├── SymbolicLinksGenerator.psm1 │ ├── pester.commands.cmdlets.process.tests.ps1 │ ├── pester.core.job.tests.ps1 │ ├── pester.diagnostics.counter.tests.ps1 │ ├── pester.management.computersecurechannel.tests.ps1 │ ├── pester.utility.alias.tests.ps1 │ ├── pester.utility.clixml.tests.ps1 │ ├── pester.utility.command.tests.ps1 │ ├── pester.utility.formatdata.tests.ps1 │ ├── pester.utility.object.tests.ps1 │ ├── pester.utility.string.tests.ps1 │ └── pester.utility.xml.tests.ps1 ├── Contribution.md ├── LICENSE ├── README.md ├── Scripting ├── Classes │ ├── Classes.Completion.Tests.ps1 │ ├── MSFT_778492.psm1 │ ├── ProtectedAccess.Tests.ps1 │ ├── Scripting.Classes.Attributes.Tests.ps1 │ ├── Scripting.Classes.BasicParsing.Tests.ps1 │ ├── Scripting.Classes.Break.Tests.ps1 │ ├── Scripting.Classes.Exceptions.Tests.ps1 │ ├── Scripting.Classes.Modules.Tests.ps1 │ ├── scripting.classes.NestedModules.tests.ps1 │ ├── scripting.classes.inheritance.tests.ps1 │ ├── scripting.classes.miscops.tests.ps1 │ ├── scripting.classes.using.tests.ps1 │ ├── scripting.classes.using.variants.tests.ps1 │ └── scripting.enums.tests.ps1 ├── CompletionTestSupport.psm1 ├── LanguageTestSupport.psm1 └── LanguageandParser │ ├── BNotOperator.Tests.ps1 │ ├── Completion.Tests.ps1 │ ├── ExtensibleCompletion.Tests.ps1 │ ├── LanguageAndParser.TestFollowup.Tests.ps1 │ ├── MethodInvocation.Tests.ps1 │ ├── ParameterBinding.Tests.ps1 │ ├── Pester.Ast.Tests.ps1 │ ├── Pester.RedirectionOperator.Tests.ps1 │ ├── TypeAccelerator.Tests.ps1 │ ├── UsingAssembly.Tests.ps1 │ └── UsingNamespace.Tests.ps1 ├── Security ├── Pester.Acl.Tests.ps1 ├── Pester.Authenticode.Tests.ps1 ├── Pester.SuspiciousScriptBlockLogging.Tests.ps1 └── pester.security.credential.tests.ps1 ├── engine ├── EngineAPIs │ ├── Engine.Tests.ps1 │ ├── Pester.GetPowerShellAPI.Tests.ps1 │ ├── WMI.Tests.ps1 │ └── XmlAdapter.Tests.ps1 ├── ExtensibleTypeSystem │ ├── ETS.Tests.ps1 │ ├── Pester.FileVersionInfo.Tests.ps1 │ └── Pester.PSObject.Tests.ps1 ├── Other │ └── Pester.Engine.Other.InformationStream.Tests.ps1 └── Runspace │ └── Pester.Runspace.Tests.ps1 ├── provider └── Providers │ ├── Pester.Get-ChildItem.Depth.Tests.ps1 │ ├── Pester.Provider.Providers.tests.ps1 │ ├── Pester.Providers.DrivePersistence.Tests.ps1 │ └── pester.management.junction.tests.ps1 └── remoting └── Cmdlets └── NoReboot.tests.ps1 /Commands/Cmdlets/ClearRecycleBin.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/ClearRecycleBin.Tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/ClearRecycleBinHelperFunctions.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/ClearRecycleBinHelperFunctions.psm1 -------------------------------------------------------------------------------- /Commands/Cmdlets/Clipboard.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/Clipboard.Tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/ClipboardHelperFunctions.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/ClipboardHelperFunctions.psm1 -------------------------------------------------------------------------------- /Commands/Cmdlets/FormatHex.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/FormatHex.Tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/HelperMethods.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/HelperMethods.psm1 -------------------------------------------------------------------------------- /Commands/Cmdlets/MiscCmdletUpdates.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/MiscCmdletUpdates.Tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/NewGuid.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/NewGuid.Tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/NewTemporaryFile.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/NewTemporaryFile.Tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/PSODataUtils.HelperMethods.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/PSODataUtils.HelperMethods.psm1 -------------------------------------------------------------------------------- /Commands/Cmdlets/Pester.Commands.Cmdlets.NoNewlineParameter.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/Pester.Commands.Cmdlets.NoNewlineParameter.Tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/Pester.Commands.Cmdlets.StartProcessWaitPassThru.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/Pester.Commands.Cmdlets.StartProcessWaitPassThru.Tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/Pester.ConvertString.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/Pester.ConvertString.Tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/Pester.DelimitedText.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/Pester.DelimitedText.Tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/Pester.History.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/Pester.History.Tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/Pester.Management.Copy.Item.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/Pester.Management.Copy.Item.Tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/StringManipulationData/ConvertString/incorrect-examples.csv: -------------------------------------------------------------------------------- 1 | "before" 2 | "Camilla Araujo" 3 | "Yohanna Klafke" 4 | -------------------------------------------------------------------------------- /Commands/Cmdlets/StringManipulationData/ConvertString/replace-name-by-empty.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/StringManipulationData/ConvertString/replace-name-by-empty.csv -------------------------------------------------------------------------------- /Commands/Cmdlets/SymbolicLinksGenerator.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/SymbolicLinksGenerator.psm1 -------------------------------------------------------------------------------- /Commands/Cmdlets/pester.commands.cmdlets.process.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/pester.commands.cmdlets.process.tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/pester.core.job.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/pester.core.job.tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/pester.diagnostics.counter.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/pester.diagnostics.counter.tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/pester.management.computersecurechannel.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/pester.management.computersecurechannel.tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/pester.utility.alias.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/pester.utility.alias.tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/pester.utility.clixml.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/pester.utility.clixml.tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/pester.utility.command.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/pester.utility.command.tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/pester.utility.formatdata.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/pester.utility.formatdata.tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/pester.utility.object.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/pester.utility.object.tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/pester.utility.string.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/pester.utility.string.tests.ps1 -------------------------------------------------------------------------------- /Commands/Cmdlets/pester.utility.xml.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Commands/Cmdlets/pester.utility.xml.tests.ps1 -------------------------------------------------------------------------------- /Contribution.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Contribution.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/README.md -------------------------------------------------------------------------------- /Scripting/Classes/Classes.Completion.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/Classes/Classes.Completion.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/Classes/MSFT_778492.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/Classes/MSFT_778492.psm1 -------------------------------------------------------------------------------- /Scripting/Classes/ProtectedAccess.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/Classes/ProtectedAccess.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/Classes/Scripting.Classes.Attributes.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/Classes/Scripting.Classes.Attributes.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/Classes/Scripting.Classes.BasicParsing.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/Classes/Scripting.Classes.BasicParsing.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/Classes/Scripting.Classes.Break.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/Classes/Scripting.Classes.Break.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/Classes/Scripting.Classes.Exceptions.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/Classes/Scripting.Classes.Exceptions.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/Classes/Scripting.Classes.Modules.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/Classes/Scripting.Classes.Modules.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/Classes/scripting.classes.NestedModules.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/Classes/scripting.classes.NestedModules.tests.ps1 -------------------------------------------------------------------------------- /Scripting/Classes/scripting.classes.inheritance.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/Classes/scripting.classes.inheritance.tests.ps1 -------------------------------------------------------------------------------- /Scripting/Classes/scripting.classes.miscops.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/Classes/scripting.classes.miscops.tests.ps1 -------------------------------------------------------------------------------- /Scripting/Classes/scripting.classes.using.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/Classes/scripting.classes.using.tests.ps1 -------------------------------------------------------------------------------- /Scripting/Classes/scripting.classes.using.variants.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/Classes/scripting.classes.using.variants.tests.ps1 -------------------------------------------------------------------------------- /Scripting/Classes/scripting.enums.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/Classes/scripting.enums.tests.ps1 -------------------------------------------------------------------------------- /Scripting/CompletionTestSupport.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/CompletionTestSupport.psm1 -------------------------------------------------------------------------------- /Scripting/LanguageTestSupport.psm1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/LanguageTestSupport.psm1 -------------------------------------------------------------------------------- /Scripting/LanguageandParser/BNotOperator.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/LanguageandParser/BNotOperator.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/LanguageandParser/Completion.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/LanguageandParser/Completion.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/LanguageandParser/ExtensibleCompletion.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/LanguageandParser/ExtensibleCompletion.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/LanguageandParser/LanguageAndParser.TestFollowup.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/LanguageandParser/LanguageAndParser.TestFollowup.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/LanguageandParser/MethodInvocation.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/LanguageandParser/MethodInvocation.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/LanguageandParser/ParameterBinding.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/LanguageandParser/ParameterBinding.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/LanguageandParser/Pester.Ast.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/LanguageandParser/Pester.Ast.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/LanguageandParser/Pester.RedirectionOperator.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/LanguageandParser/Pester.RedirectionOperator.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/LanguageandParser/TypeAccelerator.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/LanguageandParser/TypeAccelerator.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/LanguageandParser/UsingAssembly.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/LanguageandParser/UsingAssembly.Tests.ps1 -------------------------------------------------------------------------------- /Scripting/LanguageandParser/UsingNamespace.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Scripting/LanguageandParser/UsingNamespace.Tests.ps1 -------------------------------------------------------------------------------- /Security/Pester.Acl.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Security/Pester.Acl.Tests.ps1 -------------------------------------------------------------------------------- /Security/Pester.Authenticode.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Security/Pester.Authenticode.Tests.ps1 -------------------------------------------------------------------------------- /Security/Pester.SuspiciousScriptBlockLogging.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Security/Pester.SuspiciousScriptBlockLogging.Tests.ps1 -------------------------------------------------------------------------------- /Security/pester.security.credential.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/Security/pester.security.credential.tests.ps1 -------------------------------------------------------------------------------- /engine/EngineAPIs/Engine.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/engine/EngineAPIs/Engine.Tests.ps1 -------------------------------------------------------------------------------- /engine/EngineAPIs/Pester.GetPowerShellAPI.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/engine/EngineAPIs/Pester.GetPowerShellAPI.Tests.ps1 -------------------------------------------------------------------------------- /engine/EngineAPIs/WMI.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/engine/EngineAPIs/WMI.Tests.ps1 -------------------------------------------------------------------------------- /engine/EngineAPIs/XmlAdapter.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/engine/EngineAPIs/XmlAdapter.Tests.ps1 -------------------------------------------------------------------------------- /engine/ExtensibleTypeSystem/ETS.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/engine/ExtensibleTypeSystem/ETS.Tests.ps1 -------------------------------------------------------------------------------- /engine/ExtensibleTypeSystem/Pester.FileVersionInfo.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/engine/ExtensibleTypeSystem/Pester.FileVersionInfo.Tests.ps1 -------------------------------------------------------------------------------- /engine/ExtensibleTypeSystem/Pester.PSObject.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/engine/ExtensibleTypeSystem/Pester.PSObject.Tests.ps1 -------------------------------------------------------------------------------- /engine/Other/Pester.Engine.Other.InformationStream.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/engine/Other/Pester.Engine.Other.InformationStream.Tests.ps1 -------------------------------------------------------------------------------- /engine/Runspace/Pester.Runspace.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/engine/Runspace/Pester.Runspace.Tests.ps1 -------------------------------------------------------------------------------- /provider/Providers/Pester.Get-ChildItem.Depth.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/provider/Providers/Pester.Get-ChildItem.Depth.Tests.ps1 -------------------------------------------------------------------------------- /provider/Providers/Pester.Provider.Providers.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/provider/Providers/Pester.Provider.Providers.tests.ps1 -------------------------------------------------------------------------------- /provider/Providers/Pester.Providers.DrivePersistence.Tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/provider/Providers/Pester.Providers.DrivePersistence.Tests.ps1 -------------------------------------------------------------------------------- /provider/Providers/pester.management.junction.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/provider/Providers/pester.management.junction.tests.ps1 -------------------------------------------------------------------------------- /remoting/Cmdlets/NoReboot.tests.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PowerShell/PowerShell-Tests/HEAD/remoting/Cmdlets/NoReboot.tests.ps1 --------------------------------------------------------------------------------