diff options
| author | Bob Arnson <bob@firegiant.com> | 2021-04-12 15:13:08 -0400 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2021-04-12 15:22:15 -0400 |
| commit | 3f4bd928ab4c048792bf4c5c10004a1f22e8aa19 (patch) | |
| tree | a884ad428b3db891adefb3111dc8819e90c83855 /src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs | |
| parent | d77302d94b356a1db2b2b834e45c8962381eae6b (diff) | |
| download | wix-3f4bd928ab4c048792bf4c5c10004a1f22e8aa19.tar.gz wix-3f4bd928ab4c048792bf4c5c10004a1f22e8aa19.tar.bz2 wix-3f4bd928ab4c048792bf4c5c10004a1f22e8aa19.zip | |
Fix decompilation of directories as children TARGETDIR.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs b/src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs index b07f5bda..ab04da15 100644 --- a/src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/DecompileFixture.cs | |||
| @@ -3,10 +3,8 @@ | |||
| 3 | namespace WixToolsetTest.CoreIntegration | 3 | namespace WixToolsetTest.CoreIntegration |
| 4 | { | 4 | { |
| 5 | using System.IO; | 5 | using System.IO; |
| 6 | using System.Xml.Linq; | ||
| 7 | using WixBuildTools.TestSupport; | 6 | using WixBuildTools.TestSupport; |
| 8 | using WixToolset.Core.TestPackage; | 7 | using WixToolset.Core.TestPackage; |
| 9 | using WixToolset.Extensibility.Services; | ||
| 10 | using Xunit; | 8 | using Xunit; |
| 11 | 9 | ||
| 12 | public class DecompileFixture | 10 | public class DecompileFixture |
| @@ -78,5 +76,11 @@ namespace WixToolsetTest.CoreIntegration | |||
| 78 | { | 76 | { |
| 79 | DecompileAndCompare(@"TestData\DecompileNullComponent", "example.msi", "Expected.wxs"); | 77 | DecompileAndCompare(@"TestData\DecompileNullComponent", "example.msi", "Expected.wxs"); |
| 80 | } | 78 | } |
| 79 | |||
| 80 | [Fact] | ||
| 81 | public void CanDecompileMergeModuleWithTargetDirComponent() | ||
| 82 | { | ||
| 83 | DecompileAndCompare(@"TestData\DecompileTargetDirMergeModule", "MergeModule1.msm", "Expected.wxs"); | ||
| 84 | } | ||
| 81 | } | 85 | } |
| 82 | } | 86 | } |
