def test_card_diamond_is_not_monster(): c = Card(DIAMOND, 5) assert c.is_monster() == False
def test_card_club_is_monster(): c = Card(CLUB, 5) assert c.is_monster() == True
def test_card_heart_is_not_monster(): c = Card(HEART, 5) assert c.is_monster() == False
def test_card_spade_is_monster(): c = Card(SPADE, 5) assert c.is_monster() == True