Skip to content

packages.valory.skills.abstract_abci.tests.test_dialogues

Test the dialogues.py module of the skill.

test_dialogues_creation

@pytest.mark.parametrize(
    "dialogues_cls,expected_role_from_first_message",
    [
        (AbciDialogues, AbciDialogue.Role.CLIENT),
    ],
)
def test_dialogues_creation(dialogues_cls: Type[AbciDialogues],
                            expected_role_from_first_message: Enum) -> None

Test XDialogues creations.