This repository has been archived on 2025-07-31. You can view files and clone it, but cannot push or open issues or pull requests.
Files
fbchat/tests/conftest.py
2020-01-21 23:05:57 +01:00

14 lines
254 B
Python

import pytest
@pytest.fixture(scope="session")
def session():
class FakeSession:
# TODO: Add a further mocked session
user_id = "31415926536"
def __repr__(self):
return "<FakeSession>"
return FakeSession()