diff --git a/Console/RedPlanet/Apps.xml b/Console/RedPlanet/Apps.xml index 8f5cd40..f48c060 100644 --- a/Console/RedPlanet/Apps.xml +++ b/Console/RedPlanet/Apps.xml @@ -76,4 +76,23 @@ autoRestart="true" hostType="None" /> + + + + + diff --git a/Console/tests/TeslaConsole.DiffTests/CatalogTests.cs b/Console/tests/TeslaConsole.DiffTests/CatalogTests.cs index fdd4ad7..54203f9 100644 --- a/Console/tests/TeslaConsole.DiffTests/CatalogTests.cs +++ b/Console/tests/TeslaConsole.DiffTests/CatalogTests.cs @@ -25,10 +25,16 @@ namespace TeslaConsole.DiffTests => _fx.Recovered.Run("CatalogEntry", new[] { _catalog, launchKey, w, h }); [Fact] - public void Catalog_Has_Three_Products_And_Five_Entries() - => Assert.Equal("products=3;entries=5", + public void Catalog_Has_Four_Products_And_Six_Entries() + => Assert.Equal("products=4;entries=6", _fx.Recovered.Run("CatalogSummary", new[] { _catalog })); + [Fact] + public void RioJoy_Matches_Expected() + => Assert.Equal( + @"RIOJoy|fe83e212-45df-48f9-848e-0b3cee0692a3|C:\Games\RIOJoy\app\RioJoy.Tray.exe||C:\Games\RIOJoy\app|False", + Entry("FE83E212-45DF-48F9-848E-0B3CEE0692A3")); + // Each expected string is "DisplayName|LaunchKey|Exe|Args|WorkingDirectory|AutoRestart" // and matches exactly what the old hardcoded PodInfo_InstallProductCompleted emitted.