mirror of
https://github.com/hwchase17/langchain
synced 2024-11-08 07:10:35 +00:00
8 lines
226 B
Python
8 lines
226 B
Python
|
from langchain_cli.utils.events import EventDict, create_events
|
||
|
|
||
|
|
||
|
def test_create_events() -> None:
|
||
|
assert create_events(
|
||
|
[EventDict(event="Test Event", properties={"test": "test"})]
|
||
|
) == {"status": "success"}
|