From 4ac81bcc620e7b8d3bc62f3bd4ba92d5253f86e9 Mon Sep 17 00:00:00 2001 From: onyx-and-iris <75868496+onyx-and-iris@users.noreply.github.com> Date: Sun, 9 Jan 2022 14:24:23 +0000 Subject: [PATCH] Update higher.Tests.ps1 add tests for showvbanchat and lock to higher tests. --- test/higher.Tests.ps1 | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/test/higher.Tests.ps1 b/test/higher.Tests.ps1 index 648f0af..74bf009 100644 --- a/test/higher.Tests.ps1 +++ b/test/higher.Tests.ps1 @@ -900,4 +900,26 @@ Describe -Tag 'higher', -TestName 'All Alias Tests' { } } } + + Describe 'Special Commands Test' { + Context 'command.showvbanchat' { + It 'Should set showvbanchat to 1' { + $vmr.command.showvbanchat = $true + } + + It 'Should set showvbanchat to 0' { + $vmr.command.showvbanchat = $false + } + } + + Context 'command.lock' { + It 'Should set command.lock to 1' { + $vmr.command.lock = $true + } + + It 'Should set command.lock to 0' { + $vmr.command.lock = $false + } + } + } }