|
|
|||
File indexing completed on 2026-04-27 07:28:14
0001 """Shared pytest fixtures for integration tests.""" 0002 0003 import pytest 0004 0005 0006 @pytest.fixture 0007 def sample_integration_fixture(): 0008 """Example fixture for integration tests.""" 0009 # Setup code here 0010 yield "integration_test_data" 0011 # Teardown code here
| [ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
|
This page was automatically generated by the 2.3.7 LXR engine. The LXR team |
|