()
| 7 | |
| 8 | @pytest.fixture |
| 9 | def cookie_dict() -> CookieParam: |
| 10 | return CookieParam( |
| 11 | { |
| 12 | 'name': 'test_cookie', |
| 13 | 'value': 'test_value', |
| 14 | 'domain': 'example.com', |
| 15 | 'path': '/test', |
| 16 | 'expires': 1735689600, |
| 17 | 'http_only': True, |
| 18 | 'secure': True, |
| 19 | 'same_site': 'Strict', |
| 20 | } |
| 21 | ) |
| 22 | |
| 23 | |
| 24 | @pytest.fixture |
nothing calls this directly
no test coverage detected