add regex to base, remove tests from modules

Parse multi set params using regex

Remove tests from each module
This commit is contained in:
Onyx and Iris
2021-05-02 13:34:13 +01:00
parent 2f1508e8f1
commit 63a56c7a72
4 changed files with 5 additions and 71 deletions

View File

@@ -57,22 +57,3 @@ Function Buses {
}
$bus
}
if ($MyInvocation.InvocationName -ne '.')
{
. .\voicemeeter.ps1
try {
$vmr = [Remote]::new('potato')
$vmr.bus[0].mono = $true
$vmr.bus[0].mono
$vmr.bus[0].mono = $false
$vmr.bus[0].mono
$vmr.bus[1].gain = 3.2
$vmr.bus[1].gain
$vmr.bus[2].gain = -2.0
$vmr.bus[2].gain
}
finally { $vmr.Logout() }
}