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

@@ -177,23 +177,3 @@ Function Strips {
}
$strip
}
if ($MyInvocation.InvocationName -ne '.')
{
. .\voicemeeter.ps1
try {
$vmr = [Remote]::new('potato')
$vmr.strip[1].A1 = $true
$vmr.strip[1].A1
$vmr.strip[2].A2 = $false
$vmr.strip[2].A2
$vmr.strip[1].gain = 3.2
$vmr.strip[1].gain
$vmr.strip[2].gain = -2.0
$vmr.strip[2].gain
}
finally { $vmr.Logout() }
}