From 4297d2ef82bce72d144dd159f1760b686851d8cc Mon Sep 17 00:00:00 2001 From: dfinke Date: Thu, 20 Sep 2018 12:09:19 -0400 Subject: [PATCH] Confirms the errors --- __tests__/FunctionAlias.tests.ps1 | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/__tests__/FunctionAlias.tests.ps1 b/__tests__/FunctionAlias.tests.ps1 index e69de29..b5d4382 100644 --- a/__tests__/FunctionAlias.tests.ps1 +++ b/__tests__/FunctionAlias.tests.ps1 @@ -0,0 +1,26 @@ +#Requires -Modules Pester +Import-Module $PSScriptRoot\..\ImportExcel.psd1 -Force + +Describe "Check if Function aliases exist" { + + It "Set-Column should exist" { + Get-Command Set-Column | Should Not Be $null + } + + It "Set-Row should exist" { + Get-Command Set-Row | Should Not Be $null + } + + It "Set-Format should exist" { + Get-Command Set-Format | Should Not Be $null + } + + It "Merge-MulipleSheets should exist" { + Get-Command Merge-MulipleSheets | Should Not Be $null + } + + It "New-ExcelChart should exist" { + Get-Command New-ExcelChart | Should Not Be $null + } + +} \ No newline at end of file