We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1b2cfc6 commit 3da7466Copy full SHA for 3da7466
1 file changed
tests/Build/BuildValidation.Tests.ps1
@@ -31,18 +31,22 @@ Describe 'Build Script Validation' {
31
32
It 'contains expected exported functions' {
33
$expectedFunctions = @(
34
- 'ConvertTo-Splatting',
35
'Export-PSNote',
36
- 'Get-CommandSplatting',
37
'Get-PSNote',
38
'Get-PSNoteAlias',
+ 'Get-PSNoteMenu',
39
'Import-PSNote',
40
'Initialize-PSNoteStore',
+ 'Move-PSNote',
41
'New-PSNote',
42
'Remove-PSNote',
43
'Set-PSNote',
44
- 'Start-PSNote',
45
- 'Update-PSNoteStore'
+ 'Update-PSNoteStore',
+ 'Get-RemoteCatalog',
46
+ 'Import-RemoteCatalog',
47
+ 'Remove-RemoteCatalog',
48
+ 'ConvertTo-Splatting',
49
+ 'Get-CommandSplatting'
50
)
51
$exportedFunctions = (Get-Command -Module PSNotes -CommandType Function).Name
52
foreach ($func in $expectedFunctions) {
0 commit comments