12 lines
303 B
Python
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)
|