diff options
author | Rob Mensching <rob@firegiant.com> | 2020-05-30 14:53:05 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2020-05-30 15:07:21 -0700 |
commit | d529525a1e331f3ef9ec2707791c99bd78fdd82f (patch) | |
tree | 1d9fe1f0c0ee9850371c916802eb03ec9dc37a87 /src/test | |
parent | 9c54d2fce80983bbee5f0f113b5aa30f22bc8a23 (diff) | |
download | wix-d529525a1e331f3ef9ec2707791c99bd78fdd82f.tar.gz wix-d529525a1e331f3ef9ec2707791c99bd78fdd82f.tar.bz2 wix-d529525a1e331f3ef9ec2707791c99bd78fdd82f.zip |
Basic patching support
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/PatchFixture.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/PatchFixture.cs b/src/test/WixToolsetTest.CoreIntegration/PatchFixture.cs index 584f86fe..3616bcab 100644 --- a/src/test/WixToolsetTest.CoreIntegration/PatchFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/PatchFixture.cs | |||
@@ -16,7 +16,7 @@ namespace WixToolsetTest.CoreIntegration | |||
16 | { | 16 | { |
17 | private static readonly XNamespace PatchNamespace = "http://www.microsoft.com/msi/patch_applicability.xsd"; | 17 | private static readonly XNamespace PatchNamespace = "http://www.microsoft.com/msi/patch_applicability.xsd"; |
18 | 18 | ||
19 | [Fact(Skip = "Skip until patches have files in them")] | 19 | [Fact] |
20 | public void CanBuildSimplePatch() | 20 | public void CanBuildSimplePatch() |
21 | { | 21 | { |
22 | var folder = TestData.Get(@"TestData\PatchSingle"); | 22 | var folder = TestData.Get(@"TestData\PatchSingle"); |
@@ -45,7 +45,7 @@ namespace WixToolsetTest.CoreIntegration | |||
45 | Assert.True(File.Exists(cab)); | 45 | Assert.True(File.Exists(cab)); |
46 | 46 | ||
47 | var files = Query.GetCabinetFiles(cab); | 47 | var files = Query.GetCabinetFiles(cab); |
48 | Assert.Equal(new[] { "a", "b" }, files.Select(f => f.ArchiveName).ToArray()); // This test may not be quite correct, yet. | 48 | Assert.Equal(new[] { "a.txt", "b.txt" }, files.Select(f => f.Name).ToArray()); |
49 | } | 49 | } |
50 | } | 50 | } |
51 | 51 | ||