Ejemplo n.º 1
0
def test_json_parse_resume():
    # DOCS MARKER ConversationResumed
    evt = \
        {
            'event': 'resume',
        }
    # DOCS END
    assert Event.from_parameters(evt) == ConversationResumed()
Ejemplo n.º 2
0
def test_json_parse_resume():
    # DOCS MARKER ConversationResumed
    evt = {"event": "resume"}
    # DOCS END
    assert Event.from_parameters(evt) == ConversationResumed()
Ejemplo n.º 3
0
 [
     (
         UserUttered("/greet", {
             "name": "greet",
             "confidence": 1.0
         }, []),
         UserUttered("/goodbye", {
             "name": "goodbye",
             "confidence": 1.0
         }, []),
     ),
     (SlotSet("my_slot", "value"), SlotSet("my__other_slot", "value")),
     (Restarted(), None),
     (AllSlotsReset(), None),
     (ConversationPaused(), None),
     (ConversationResumed(), None),
     (StoryExported(), None),
     (ActionReverted(), None),
     (UserUtteranceReverted(), None),
     (ActionExecuted("my_action"), ActionExecuted("my_other_action")),
     (FollowupAction("my_action"), FollowupAction("my_other_action")),
     (
         BotUttered("my_text", {"my_data": 1}),
         BotUttered("my_other_test", {"my_other_data": 1}),
     ),
     (
         AgentUttered("my_text", "my_data"),
         AgentUttered("my_other_test", "my_other_data"),
     ),
     (
         ReminderScheduled("my_action", datetime.now()),
Ejemplo n.º 4
0
def test_json_parse_resume():
    evt = {"event": "resume"}
    assert Event.from_parameters(evt) == ConversationResumed()