aboutsummaryrefslogtreecommitdiffstats
path: root/test_hydra.py
diff options
context:
space:
mode:
Diffstat (limited to 'test_hydra.py')
-rwxr-xr-xtest_hydra.py74
1 files changed, 0 insertions, 74 deletions
diff --git a/test_hydra.py b/test_hydra.py
deleted file mode 100755
index 4853715..0000000
--- a/test_hydra.py
+++ /dev/null
@@ -1,74 +0,0 @@
-#!/usr/bin/env python3
-
-import unittest
-from lxml import html
-import cardparser
-
-class Test_cardInformationParsing(unittest.TestCase):
-
- @classmethod
- def setUpClass(cls):
- with open("testcards/hydra", "r") as file:
- cls.page = html.fromstring(file.read())
-
- # Tests
- def test_correctTitleIsParsed(self):
- self.assertEqual(cardparser.getTitle(self.page), "Khalni Hydra")
-
- def test_correctCostIsParsed(self):
- self.assertEqual(cardparser.getCost(self.page), "GGGGGGGG")
-
- def test_correctConvertedCostIsParsed(self):
- self.assertEqual(cardparser.getConvertedCost(self.page), "8")
-
- def test_correctColourIsParsed(self):
- self.assertEqual(cardparser.getColour(self.page), "G")
-
- def test_correctTypeIsParsed(self):
- self.assertEqual(cardparser.getType(self.page), "Creature")
-
- def test_correctSubTypeIsParsed(self):
- self.assertEqual(cardparser.getSubType(self.page), "Hydra")
-
- def test_correctArtistIsParsed(self):
- self.assertEqual(cardparser.getArtist(self.page), "Todd Lockwood")
-
- def test_correctTextIsParsed(self):
- self.assertEqual(cardparser.getText(self.page), ["Khalni Hydra costs {G} less to cast for each green creature you control.", "Trample"])
-
- def test_correctFlavourIsParsed(self):
- self.assertEqual(cardparser.getFlavour(self.page), "\"In ages past, bargains were struck and promises were made. Now we must collect on our debt. Begin the hymns.\" —Moruul, Khalni druid")
-
- def test_correctRarityIsParsed(self):
- self.assertEqual(cardparser.getRarity(self.page), "Mythic Rare")
-
- def test_correctPowerIsParsed(self):
- self.assertEqual(cardparser.getPower(self.page), "8")
-
- def test_correctToughnessIsParsed(self):
- self.assertEqual(cardparser.getToughness(self.page), "8")
-
- def test_correctLoyaltyIsParsed(self):
- self.assertEqual(cardparser.getLoyalty(self.page), "")
-
-class Test_additionalCardData(unittest.TestCase):
-
- @classmethod
- def setUpClass(cls):
- cls.card = cardparser.fetchCard("roe", "192")
-
- def test_cardHasCorrectEdition(self):
- self.assertEqual(self.card.edition, "roe")
-
- def test_cardHasCorrectScan(self):
- self.assertEqual(self.card.scan, "http://magiccards.info/scans/en/roe/192.jpg")
-
- def test_cardHasCorrectNumber(self):
- self.assertEqual(self.card.number, "192")
-
-def test():
- unittest.main(exit=False)
-
-# The entry point
-if __name__ == "__main__":
- test()