1
0
Fork 0

Remove unnecessary unittest of Microsoft store-only game, which was added to Steam.

This commit is contained in:
Casper V. Kristensen 2018-08-25 19:29:46 +02:00
parent a42ad64994
commit abb36769fe
Signed by: caspervk
GPG key ID: B1156723DB3BDDA8

View file

@ -136,10 +136,6 @@ class ParseDirnameTestCase(unittest.TestCase):
p = self.bot.parse_dirname("DUSK.Episode.1.Build.2.6-SKIDROW") p = self.bot.parse_dirname("DUSK.Episode.1.Build.2.6-SKIDROW")
self.assertEqual("Update", p["type"]) self.assertEqual("Update", p["type"])
def test_readnfo_microsoft_store(self):
p = self.bot.parse_dirname("Zoo.Tycoon.Ultimate.Animal.Collection.READNFO-CODEX")
self.assertIn("microsoft.com/en-us/p/zoo-tycoon-ultimate-animal-collection", p["store_links"]["Microsoft Store"])
if __name__ == '__main__': if __name__ == '__main__':
unittest.main() unittest.main()