Example #1
0
 def test_conversation_steps_error(self, mock_get_tracker_and_domain):
     with pytest.raises(Exception):
         conversation_steps = ChatHistory.conversation_steps("tests")
         assert not conversation_steps
Example #2
0
 def test_conversation_steps(self, mock_chat_history):
     conversation_steps = ChatHistory.conversation_steps("tests")
     assert conversation_steps
Example #3
0
 def test_conversation_steps_empty(self, mock_chat_history_empy):
     conversation_steps = ChatHistory.conversation_steps("tests")
     assert not conversation_steps