From b84cb22464b0d418a909b2d81ecdbd0a469bbcfb Mon Sep 17 00:00:00 2001 From: Scott Muc Date: Sat, 29 Dec 2012 02:43:56 -0800 Subject: [PATCH] moving xsd out of the root --- Functions/TestResults.Tests.ps1 | 2 +- nunit_schema_2.5.xsd => templates/nunit_schema_2.5.xsd | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename nunit_schema_2.5.xsd => templates/nunit_schema_2.5.xsd (100%) diff --git a/Functions/TestResults.Tests.ps1 b/Functions/TestResults.Tests.ps1 index 03bf665df..015258ed3 100644 --- a/Functions/TestResults.Tests.ps1 +++ b/Functions/TestResults.Tests.ps1 @@ -179,7 +179,7 @@ Describe "Write nunit test results" { $testFile = "$TestDrive\Results\Tests.xml" Write-NunitTestReport $testResults $testFile [xml]$xml = gc $testFile - $valid = Validate-Xml $xml '.\nunit_schema_2.5.xsd' + $valid = Validate-Xml $xml '.\Templates\nunit_schema_2.5.xsd' $valid.Should.Be($true) } } diff --git a/nunit_schema_2.5.xsd b/templates/nunit_schema_2.5.xsd similarity index 100% rename from nunit_schema_2.5.xsd rename to templates/nunit_schema_2.5.xsd