13 lines
198 B
Python
13 lines
198 B
Python
# -*- coding: utf-8 -*-
|
|
# type: ignore
|
|
from __future__ import annotations
|
|
|
|
import uuid
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def null_uuid():
|
|
return uuid.UUID('00000000-0000-0000-0000-000000000000')
|