Ejemplo n.º 1
0
 // GH #816: Ensure URLs with & are encoded correctly.
 public string SD_URL_encode_816(string path)
 {
     return(SpacedockMod.FromJson(string.Format(
                                      @"{{""name"":""Mod"",""id"":69420,""game"":""Kerbal Space Program"",""game_id"":3102,""short_description"":""A mod"",""description"":""A mod"",""downloads"":0,""followers"":0,""author"":""linuxgurugamer"",""default_version_id"":1,""shared_authors"":[],""background"":null,""bg_offset_y"":null,""license"":""MIT"",""website"":null,""donations"":null,""source_code"":null,""url"":""/mod/69420/Mod"",""versions"":[{{""friendly_version"":""1"",""game_version"":""1.12.2"",""id"":1,""created"":""2021-07-16T20:46:12.309009+00:00"",""download_path"":""{0}"",""changelog"":"""",""downloads"":0}}]}}",
                                      path
                                      )).versions[0].download_path.OriginalString);
 }
Ejemplo n.º 2
0
        // GH #214: Make sure we pick up the right version
        public void SD_Version_Select_214()
        {
            var mod = SpacedockMod.FromJson(TestData.KS_CustomAsteroids_string());

            Assert.AreEqual(711, mod.Latest().id, "GH #214 - Select default_version_id");
        }