Skip to content

Instantly share code, notes, and snippets.

View mitko0003's full-sized avatar

Димитър Трендафилов mitko0003

  • Haemimont Games
  • Sofia
View GitHub Profile
import unittest
import collections
from solution import (RANKS, SUITS, Card, CardCollection,
StandardDeck, SixtySixDeck, BeloteDeck)
class RankTest(unittest.TestCase):
def setUp(self):
self.rank_string = 'Three'
self.rank = RANKS[self.rank_string]()