mirror of
https://github.com/bspeice/playwithfriends
synced 2024-11-14 10:58:09 -05:00
17 lines
418 B
Python
17 lines
418 B
Python
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(
|
|
steam_id_left, steam_id_right
|
|
)
|
|
|
|
self.assertIn('Project CARS', inter_games.values())
|