updated coreclr dependency to latest version, fixed / path separators in pester, which were invalid due to recent coreclr cleanup and changes
This commit is contained in:
parent
ead0b0c547
commit
d3aadb0a04
@ -1 +1 @@
|
||||
Subproject commit 941efb9fbfb56c0ffa5470b150dc7ca9c2ab350b
|
||||
Subproject commit dc5d388532499267e68c17c0a96153f7bc09c437
|
@ -1 +1 @@
|
||||
Subproject commit fd8c241c631c5980e57a06769f857ecf8db915b1
|
||||
Subproject commit 4de6c3792e4a3b68575f0a87d5933735d5e328c7
|
@ -1 +1 @@
|
||||
Subproject commit 5f5bdb4ad35f5932a0b67e9fad7bfd201424ac2d
|
||||
Subproject commit bd3356bd4bc7515ae5e13f3b6c98ba3f97cb0275
|
@ -1,6 +1,6 @@
|
||||
$here = Split-Path -Parent $MyInvocation.MyCommand.Path
|
||||
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path).Replace(".Tests.", ".")
|
||||
. "$here\$sut"
|
||||
. "$here/$sut"
|
||||
|
||||
Describe "Test-Environment-Variables" {
|
||||
It "Should have environment variable" {
|
||||
|
@ -1,6 +1,6 @@
|
||||
$here = Split-Path -Parent $MyInvocation.MyCommand.Path
|
||||
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path).Replace(".Tests.", ".")
|
||||
. "$here\$sut"
|
||||
. "$here/$sut"
|
||||
|
||||
Describe "Get-Alias" {
|
||||
It "Should have a return type of System.Array when gal returns more than one object" {
|
||||
|
@ -1,6 +1,6 @@
|
||||
$here = Split-Path -Parent $MyInvocation.MyCommand.Path
|
||||
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path).Replace(".Tests.", ".")
|
||||
. "$here\$sut"
|
||||
. "$here/$sut"
|
||||
|
||||
Describe "Test-Get-ChildItem" {
|
||||
It "Should list the contents of the current folder" {
|
||||
|
@ -1,6 +1,6 @@
|
||||
$here = Split-Path -Parent $MyInvocation.MyCommand.Path
|
||||
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path).Replace(".Tests.", ".")
|
||||
. "$here\$sut"
|
||||
. "$here/$sut"
|
||||
|
||||
Describe "Test-Get-Content" {
|
||||
It "Should throw an error on a directory " {
|
||||
|
@ -1,6 +1,6 @@
|
||||
$here = Split-Path -Parent $MyInvocation.MyCommand.Path
|
||||
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path).Replace(".Tests.", ".")
|
||||
. "$here\$sut"
|
||||
. "$here/$sut"
|
||||
|
||||
Describe "Test-Get-Date" {
|
||||
<#
|
||||
|
@ -1,6 +1,6 @@
|
||||
$here = Split-Path -Parent $MyInvocation.MyCommand.Path
|
||||
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path).Replace(".Tests.", ".")
|
||||
. "$here\$sut"
|
||||
. "$here/$sut"
|
||||
|
||||
Describe "Test-Get-Item" {
|
||||
It "Should list all the items in the current working directory when asterisk is used" {
|
||||
|
@ -1,6 +1,6 @@
|
||||
$here = Split-Path -Parent $MyInvocation.MyCommand.Path
|
||||
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path).Replace(".Tests.", ".")
|
||||
. "$here\$sut"
|
||||
. "$here/$sut"
|
||||
|
||||
Describe "Test-Get-Location aka pwd" {
|
||||
<#Dependencies:
|
||||
|
@ -1,6 +1,6 @@
|
||||
$here = Split-Path -Parent $MyInvocation.MyCommand.Path
|
||||
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path).Replace(".Tests.", ".")
|
||||
. "$here\$sut"
|
||||
. "$here/$sut"
|
||||
|
||||
Describe "Test-Get-Member" {
|
||||
It "Should be able to be called on string objects, ints, arrays, etc" {
|
||||
|
@ -1,6 +1,6 @@
|
||||
$here = Split-Path -Parent $MyInvocation.MyCommand.Path
|
||||
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path).Replace(".Tests.", ".")
|
||||
. "$here\$sut"
|
||||
. "$here/$sut"
|
||||
|
||||
Describe "Test-Split-Path" {
|
||||
<#
|
||||
|
@ -1,6 +1,6 @@
|
||||
$here = Split-Path -Parent $MyInvocation.MyCommand.Path
|
||||
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path).Replace(".Tests.", ".")
|
||||
. "$here\$sut"
|
||||
. "$here/$sut"
|
||||
|
||||
Describe "test-Add-Member" {
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
$here = Split-Path -Parent $MyInvocation.MyCommand.Path
|
||||
$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path).Replace(".Tests.", ".")
|
||||
. "$here\$sut"
|
||||
. "$here/$sut"
|
||||
|
||||
Describe "New-Object" {
|
||||
It "should create an object with 4 fields" {
|
||||
|
Loading…
Reference in New Issue
Block a user