diff --git a/tests/test_app.py b/tests/test_app.py index 92ea2c4..9573887 100644 --- a/tests/test_app.py +++ b/tests/test_app.py @@ -35,6 +35,24 @@ def me(): {user.name} +Connections + + + +""" + + +@app.route("/me/connections/") +def my_connections(): + user = discord.fetch_user() + connections = discord.fetch_connections() + return f""" + + +{user.name} + + +{str([f"{connection.name} - {connection.type}" for connection in connections])}