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:
Peter Honeder 2015-07-17 15:33:23 -07:00
parent ead0b0c547
commit d3aadb0a04
14 changed files with 14 additions and 14 deletions

@ -1 +1 @@
Subproject commit 941efb9fbfb56c0ffa5470b150dc7ca9c2ab350b
Subproject commit dc5d388532499267e68c17c0a96153f7bc09c437

@ -1 +1 @@
Subproject commit fd8c241c631c5980e57a06769f857ecf8db915b1
Subproject commit 4de6c3792e4a3b68575f0a87d5933735d5e328c7

@ -1 +1 @@
Subproject commit 5f5bdb4ad35f5932a0b67e9fad7bfd201424ac2d
Subproject commit bd3356bd4bc7515ae5e13f3b6c98ba3f97cb0275

View File

@ -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" {

View File

@ -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" {

View File

@ -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" {

View File

@ -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 " {

View File

@ -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" {
<#

View File

@ -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" {

View File

@ -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:

View File

@ -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" {

View File

@ -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" {
<#

View File

@ -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" {

View File

@ -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" {