mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 02:12:01 +00:00
Simplify setup.tests, avoid error log
This commit is contained in:
parent
49a6a18881
commit
c324981a17
|
@ -1,13 +1,4 @@
|
||||||
# Ensure the specific version 5.3.1 of Pester is installed and imported
|
|
||||||
$RequiredVersion = [version]"5.3.1"
|
|
||||||
$InstalledModule = Get-Module -ListAvailable -Name Pester
|
|
||||||
if (-not ($InstalledModule) -or ($InstalledModule.Version -lt $RequiredVersion)) {
|
|
||||||
Install-Module -Name Pester -RequiredVersion $RequiredVersion -Force -Scope CurrentUser -SkipPublisherCheck
|
|
||||||
}
|
|
||||||
|
|
||||||
Import-Module -Name Pester -MinimumVersion 5.3.1
|
|
||||||
|
|
||||||
# Describe block to contain all tests and setup
|
|
||||||
Describe "Setup and Tests" {
|
Describe "Setup and Tests" {
|
||||||
BeforeAll {
|
BeforeAll {
|
||||||
# Setup variables
|
# Setup variables
|
||||||
|
@ -28,7 +19,9 @@ Describe "Setup and Tests" {
|
||||||
|
|
||||||
Context "Write-Log Tests" -Tag "Unit" {
|
Context "Write-Log Tests" -Tag "Unit" {
|
||||||
It "should write INFO level log" {
|
It "should write INFO level log" {
|
||||||
Remove-Item $Global:LogFilePath -ErrorAction SilentlyContinue
|
if (Test-Path $Global:LogFilePath){
|
||||||
|
Remove-Item $Global:LogFilePath -ErrorAction SilentlyContinue
|
||||||
|
}
|
||||||
|
|
||||||
Write-Log -Message "Test Info Message" -Level "INFO"
|
Write-Log -Message "Test Info Message" -Level "INFO"
|
||||||
$Global:LogFilePath | Should -Exist
|
$Global:LogFilePath | Should -Exist
|
||||||
|
@ -38,7 +31,9 @@ Describe "Setup and Tests" {
|
||||||
}
|
}
|
||||||
|
|
||||||
It "should write ERROR level log" {
|
It "should write ERROR level log" {
|
||||||
Remove-Item $Global:LogFilePath -ErrorAction SilentlyContinue
|
if (Test-Path $Global:LogFilePath){
|
||||||
|
Remove-Item $Global:LogFilePath -ErrorAction SilentlyContinue
|
||||||
|
}
|
||||||
|
|
||||||
Write-Log -Message "Test Error Message" -Level "ERROR"
|
Write-Log -Message "Test Error Message" -Level "ERROR"
|
||||||
$Global:LogFilePath | Should -Exist
|
$Global:LogFilePath | Should -Exist
|
||||||
|
|
Loading…
Reference in New Issue
Block a user