Home-made fixture - Fixtures and Mocking in Python
Keyboard shortcuts
Press ← or → to navigate between chapters
Press S or / to search in the book
Press ? to show this help
Press Esc to hide this help
Home-made fixture
import pytest
@pytest.fixture()
def config():
return {
'name' : 'Foo Bar',
'email' : 'foo@bar.com',
}
def test_some_data(config):
assert True
print(config)