Skip to content

Commit

Permalink
appveyor changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Craig Dayton authored and Craig Dayton committed Jun 25, 2017
1 parent 585af02 commit 2b958e9
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Tests/Venom.tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ Describe "General project validation: $moduleName" {
$null = [System.Management.Automation.PSParser]::Tokenize($contents, [ref]$errors)
$errors.Count | Should Be 0
}

# $moduleRoot is C:\projects\venom
It "Module '$moduleName' can import cleanly" {
{Import-Module (Join-Path $moduleRoot "$moduleName.psm1") -force } | Should Not Throw
{Import-Module (Join-Path "$moduleRoot\Venom" "$moduleName.psm1") -force } | Should Not Throw
}
}
4 changes: 2 additions & 2 deletions Tests/common.tests.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Pester\Describe "Manifest" {
}

Pester\It "has a valid guid" {
$ManifestHash.Guid | Should Be "8c5437bf-9dcb-461e-aa58-416011ea78a0"
$ManifestHash.Guid | Should Be "af362048-60a5-47ab-8ad9-a158e89dabb7"
}

Pester\It "has a valid version" {
Expand All @@ -69,7 +69,7 @@ Pester\Describe "Manifest" {
}

Pester\It 'exports all public functions' {
$FunctionFiles = Get-ChildItem "$ModulePath\functions" -Filter *.ps1 | Select-Object -ExpandProperty basename
$FunctionFiles = Get-ChildItem "$ModulePath\Venom" -Filter *.ps1 | Select-Object -ExpandProperty basename
$FunctionNames = $FunctionFiles
$ManifestHash.FunctionsToExport | Should Be $FunctionNames
}
Expand Down
6 changes: 3 additions & 3 deletions Venom/Venom.psd1
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
RootModule = 'Venom.psm1'

# Version number of this module.
ModuleVersion = '1.0'
ModuleVersion = '0.1.0'

# Supported PSEditions
# CompatiblePSEditions = @()
Expand Down Expand Up @@ -99,10 +99,10 @@ PrivateData = @{
# Tags = @()

# A URL to the license for this module.
# LicenseUri = ''
# LicenseUri = 'https://github.com/cadayton/V1nom/blob/master/Venom/license'

# A URL to the main website for this project.
# ProjectUri = ''
# ProjectUri = 'https://github.com/cadayton/Venom'

# A URL to an icon representing this module.
# IconUri = ''
Expand Down

0 comments on commit 2b958e9

Please sign in to comment.