Tests/Set-ARMparameter.Tests.ps1
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 |
#$here = Split-Path -Parent $MyInvocation.MyCommand.Path #$sut = (Split-Path -Leaf $MyInvocation.MyCommand.Path) -replace '\.Tests\.', '.' #. "$here\$sut" $modulePath = Split-Path $PSScriptRoot -Parent $modulepath = Join-Path -Path $modulePath -ChildPath posharm.psd1 Import-Module $modulePath New-ArmTemplate $newParam = New-ARMparameter -Name test -Type string | Add-ARMparameter -PassThru $newParameterValue = @{ Type = "int" DefaultValue = "test" } Describe "Set-ARMparameter" { Context "Without pipeline" { Set-ARMparameter -Name test -Value $newParameterValue $template = Get-ARMtemplate It "Should set the type to [$($newParameterValue.type)]" { $template.parameters.test.type | Should Be $newParameterValue.type } It "Should set the DefaultValue to [$($newParameterValue.DefaultValue)]" { $template.parameters.test.defaultvalue | should be $newParameterValue.DefaultValue } } } Remove-Module -name posharm -ErrorAction SilentlyContinue |