lotr-sut/tests/backend/services/test_character_profiles.py
Fellowship Scholar f6a5823439 init commit
2026-03-29 20:07:56 +00:00

12 lines
303 B
Python

import pytest
from sut.backend.services.character_profiles import CharacterProfiles
def test_get_profile_returns_dict():
# Arrange
profiles = CharacterProfiles()
character = "Aragorn"
# Act
profile = profiles.get_profile(character)
# Assert
assert isinstance(profile, dict)