mirror of
https://github.com/dfinke/ImportExcel.git
synced 2025-12-06 00:23:20 +00:00
7 lines
206 B
PowerShell
7 lines
206 B
PowerShell
Param()
|
|
Describe "Module" -Tag "TestImportOnly" {
|
|
It "Should import without error" {
|
|
{ Import-Module $PSScriptRoot\..\..\ImportExcel.psd1 -Force -ErrorAction Stop } | Should -Not -Throw
|
|
}
|
|
}
|