When having a configuration with more than one required module, only the first required module is loaded. This is because on [line 47](https://github.com/PowerShell/DscConfiguration.Tests/blob/master/TestHelper.psm1#L47) we single out only the first. ``` foreach($RequiredModule in $ManifestData.RequiredModules[0]) { ... } ``` This should be ``` foreach($RequiredModule in $ManifestData.RequiredModules) { ... } ```
When having a configuration with more than one required module, only the first required module is loaded.
This is because on line 47 we single out only the first.
This should be