forked from mirror/Archipelago
+2








e0e9fdd86a
Adds HotS, LotV and NCO campaigns to SC2 game. The world's name has changed to reflect that (it's not only Wings of Liberty now) The client was patched in a way that can still join to games generated prior this change --------- Co-authored-by: Magnemania <[email protected]> Co-authored-by: EnvyDragon <[email protected]> Co-authored-by: Matthew <[email protected]> Co-authored-by: hopop201 <[email protected]> Co-authored-by: Salzkorn <[email protected]> Co-authored-by: genderdruid <[email protected]> Co-authored-by: MadiMadsen <[email protected]> Co-authored-by: neocerber <[email protected]> Co-authored-by: Exempt-Medic <[email protected]> Co-authored-by: Fabian Dill <[email protected]>
8 lines
295 B
Python
8 lines
295 B
Python
import unittest
|
|
from .test_base import Sc2TestBase
|
|
from .. import Options, MissionTables
|
|
|
|
class TestOptions(unittest.TestCase):
|
|
def test_campaign_size_option_max_matches_number_of_missions(self):
|
|
self.assertEqual(Options.MaximumCampaignSize.range_end, len(MissionTables.SC2Mission))
|