Update higher.Tests.ps1

pester tests pass for all kinds
This commit is contained in:
pblivingston 2025-11-27 13:14:11 -05:00
parent aa2c2a24af
commit 438fa525da

View File

@ -137,6 +137,32 @@ Describe -Tag 'higher', -TestName 'All Higher Tests' {
} }
} }
Context 'Fx' -Skip:$ifNotPotato {
Context 'Delay' {
It 'Should set and get Fx.delay.on' {
$vmr.fx.delay.on = $value
$vmr.fx.delay.on | Should -Be $expected
}
It 'Should set and get Fx.delay.ab' {
$vmr.fx.delay.ab = $value
$vmr.fx.delay.ab | Should -Be $expected
}
}
Context 'Reverb' {
It 'Should set and get Fx.reverb.on' {
$vmr.fx.reverb.on = $value
$vmr.fx.reverb.on | Should -Be $expected
}
It 'Should set and get Fx.reverb.ab' {
$vmr.fx.reverb.ab = $value
$vmr.fx.reverb.ab | Should -Be $expected
}
}
}
Context 'Patch' { Context 'Patch' {
It 'Should set and get Patch.insert[$insert]' -Skip:$ifBasic { It 'Should set and get Patch.insert[$insert]' -Skip:$ifBasic {
$vmr.patch.insert[$insert].set($value) $vmr.patch.insert[$insert].set($value)