diff options
Diffstat (limited to 'test_cardclass.py')
-rwxr-xr-x | test_cardclass.py | 65 |
1 files changed, 0 insertions, 65 deletions
diff --git a/test_cardclass.py b/test_cardclass.py deleted file mode 100755 index 409bff4..0000000 --- a/test_cardclass.py +++ /dev/null @@ -1,65 +0,0 @@ -#!/usr/bin/env python3 - -import unittest -import cardparser - -class Test_cardClass(unittest.TestCase): - - def setUp(self): - self.card = cardparser.Card() - - # Tests - def test_cardHasTitle(self): - self.assertIsNotNone(self.card.title) - - def test_cardHasCost(self): - self.assertIsNotNone(self.card.cost) - - def test_cardHasConvertedCost(self): - self.assertIsNotNone(self.card.convertedCost) - - def test_cardHasColour(self): - self.assertIsNotNone(self.card.colour) - - def test_cardHasType(self): - self.assertIsNotNone(self.card.type) - - def test_cardHasSubType(self): - self.assertIsNotNone(self.card.subtype) - - def test_cardHasEdition(self): - self.assertIsNotNone(self.card.edition) - - def test_cardHasScan(self): - self.assertIsNotNone(self.card.scan) - - def test_cardHasArtist(self): - self.assertIsNotNone(self.card.artist) - - def test_cardHasText(self): - self.assertIsNotNone(self.card.text) - - def test_cardHasFlavour(self): - self.assertIsNotNone(self.card.flavour) - - def test_cardHasRarity(self): - self.assertIsNotNone(self.card.rarity) - - def test_cardHasNumber(self): - self.assertIsNotNone(self.card.number) - - def test_cardHasPower(self): - self.assertIsNotNone(self.card.power) - - def test_cardHasToughness(self): - self.assertIsNotNone(self.card.toughness) - - def test_cardHasLoyalty(self): - self.assertIsNotNone(self.card.loyalty) - -def test(): - unittest.main(exit=False) - -# The entry point -if __name__ == "__main__": - test() |