12 lines
233 B
Python
12 lines
233 B
Python
"""共通テストフィクスチャ"""
|
|
|
|
import pytest
|
|
|
|
from src.db.database import Database
|
|
|
|
|
|
@pytest.fixture
|
|
def database() -> Database:
|
|
"""データベース接続モジュールを作成"""
|
|
return Database.get_instance()
|