Add CI tag to SemanticVersion.Tests.ps1

This commit is contained in:
Sergei Vorobev 2016-07-27 18:54:40 -07:00
parent 06252836ea
commit d591871b2c

View file

@ -1,7 +1,7 @@
using namespace System.Management.Automation
using namespace System.Management.Automation.Language
Describe "SemanticVersion api tests" {
Describe "SemanticVersion api tests" -Tags 'CI' {
Context "constructing valid versions" {
It "string argument constructor" {
$v = [SemanticVersion]::new("1.2.3-alpha")
@ -184,4 +184,4 @@ Describe "SemanticVersion api tests" {
{ [SemanticVersion]::new([Version]::new("1.2")) } | Should Throw # PSArgumentException
}
}
}
}