Test/Get-Library.Tests.ps1
param ( [string] $PSScriptRoot = $( if ( $PSScriptRoot ) { $PSScriptRoot } else { Get-Location } ) ) . $PSScriptRoot\TestHelper.ps1 Describe 'Get-Library' { Context 'Configured RScript' { BeforeAll { Set-RScriptPath -Path 'C:\Program Files\Microsoft\R Open\R-3.5.2\bin\x64\Rscript.exe' } It 'returns libraries' { Get-RLibrary | ForEach-Object { Test-Path $_ -PathType Container | Should -BeTrue } } } } |