playwithfriends/tests/test_intersections.py

17 lines
418 B
Python
Raw Normal View History

2017-03-19 02:16:29 -04:00
from unittest import TestCase
from playwithfriends import intersections
class TestIntersections(TestCase):
def test_xannort_shares_project_cars(self):
steam_id_left = '76561198020882912'
steam_id_right = '76561198069992619'
inter_games = intersections.intersecting_games(
2017-03-19 12:28:09 -04:00
steam_id_left, steam_id_right
2017-03-19 02:16:29 -04:00
)
self.assertIn('Project CARS', inter_games.values())