From e616ad26561206782abef10101e1191dd5734517 Mon Sep 17 00:00:00 2001 From: Sumpfork Date: Wed, 8 Jun 2016 11:27:32 -0700 Subject: [PATCH] update unit tests for empires --- tests/carddb_tests.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/tests/carddb_tests.py b/tests/carddb_tests.py index 0b9e873..1109bbd 100644 --- a/tests/carddb_tests.py +++ b/tests/carddb_tests.py @@ -9,7 +9,7 @@ class TestCardDB(unittest.TestCase): options, args = domdiv.parse_opts(['commandname']) options.data_path = '.' cards = domdiv.read_write_card_data(options) - self.assertEquals(len(cards), 312) + self.assertEquals(len(cards), 349) print set(c.cardset for c in cards) valid_cardsets = { u'prosperity', @@ -26,7 +26,8 @@ class TestCardDB(unittest.TestCase): u'base', u'dominion', u'guilds', - u'intrigue' + u'intrigue', + u'empires' } for c in cards: self.assertIsInstance(c, domdiv_cards.Card)