Added unit tests and renamed a parameter !deploy
This commit is contained in:
31
Tests/Unit.Tests.ps1
Normal file
31
Tests/Unit.Tests.ps1
Normal file
@@ -0,0 +1,31 @@
|
||||
$projectRoot = Resolve-Path "$PSScriptRoot\.."
|
||||
$moduleRoot = Split-Path (Resolve-Path "$projectRoot\*\*.psd1")
|
||||
$moduleName = Split-Path $moduleRoot -Leaf
|
||||
|
||||
Import-Module (Join-Path $moduleRoot "$moduleName.psm1") -force
|
||||
|
||||
Describe "Basic unit tests" -Tags Build {
|
||||
|
||||
Context "Function: Get-Chronometer" {
|
||||
it "Does not throw" {
|
||||
{Get-Chronometer -Path $PSScriptRoot\..\ScratchFiles\example.ps1 -Script {"Test"} } | Should Not Throw
|
||||
}
|
||||
}
|
||||
|
||||
InModuleScope $moduleName {
|
||||
Context "Class: ScriptLine" {
|
||||
|
||||
it "Creates an Object" {
|
||||
{[ScriptLine]::New()} | Should Not Throw
|
||||
}
|
||||
}
|
||||
|
||||
Context "Class: ScriptProfiler" {
|
||||
|
||||
it "Creates an Object" {
|
||||
{[ScriptProfiler]::New()} | Should Not Throw
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user