File tree 4 files changed +17
-2
lines changed
4 files changed +17
-2
lines changed Original file line number Diff line number Diff line change @@ -33,6 +33,7 @@ Based on [style guidelines](https://dsccommunity.org/styleguidelines/localizatio
33
33
- Updated the README.md with new section and updated the links.
34
34
- Renamed class files adding a prefix on each file so the task ` Generate_Wiki_Content `
35
35
works (reported issue https://github.com/dsccommunity/DscResource.DocGenerator/issues/132 ).
36
+ - Removed unnecessary entries in module manifest because of this [ bug in PowerShell] ( https://github.com/PowerShell/PowerShell/issues/16750 ) .
36
37
37
38
### Removed
38
39
Original file line number Diff line number Diff line change @@ -65,6 +65,7 @@ Pester:
65
65
- Modules/DscResource.Common
66
66
Script :
67
67
- tests/Unit
68
+ - tests/QA
68
69
ExcludeTag :
69
70
Tag :
70
71
CodeCoverageThreshold : 25
Original file line number Diff line number Diff line change 22
22
' ConvertTo-Expression'
23
23
)
24
24
25
- CmdletsToExport = @ ()
26
-
27
25
VariablesToExport = @ ()
28
26
29
27
AliasesToExport = @ ()
Original file line number Diff line number Diff line change
1
+ $here = $PSScriptRoot
2
+ $modulePath = Join-Path - Path $PSScriptRoot - ChildPath ..\..\output\JeaDsc
3
+ $psd1 = Import-PowerShellDataFile - Path $ModuleManifestPath
4
+
5
+ Describe ' Testing Module Manifest' - Tag ' ModuleManifest' {
6
+
7
+ It " Does not contain key 'CmdletsToExport'" {
8
+ $psd1.ContainsKey (' CmdletsToExport' ) | Should Be $false
9
+ }
10
+
11
+ It " Does contain key 'DscResourcesToExport'" {
12
+ $psd1.ContainsKey (' DscResourcesToExport' ) | Should Be $true
13
+ }
14
+
15
+ }
You can’t perform that action at this time.
0 commit comments