We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d8129c5 commit 6342fe1Copy full SHA for 6342fe1
1 file changed
tests/test_catalog.py
@@ -51,8 +51,9 @@ def test_catalog_games(game_slugs, all_games):
51
"""Test games() function returns df of game slugs and titles."""
52
assert isinstance(all_games, pd.DataFrame)
53
54
- # The games() function should return exactly the set of slugs found above
55
- assert set(all_games["Game"]) == game_slugs
+ # The games() function should return set of slugs plus family games
+ fg = gbt.catalog.family_games().keys()
56
+ assert set(all_games["Game"]) == game_slugs.union(fg)
57
58
# Test that standard columns are present
59
assert "Game" in all_games.columns
0 commit comments