Skip to content

Commit f4009bd

Browse files
committed
failing test
1 parent d2baca5 commit f4009bd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

posthog/test/test_client.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,10 @@ def test_basic_capture(self):
5454
self.assertEqual(msg["distinct_id"], "distinct_id")
5555
self.assertEqual(msg["properties"]["$lib"], "posthog-python")
5656
self.assertEqual(msg["properties"]["$lib_version"], VERSION)
57+
assert msg["properties"]["$python_runtime"] == "CPython"
58+
assert msg["properties"]["$python_version"] == "3.12.4"
59+
assert msg["properties"]["$os"] == "macOS"
60+
assert msg["properties"]["$os_version"] == "14.5.0"
5761

5862
def test_basic_capture_with_uuid(self):
5963
client = self.client

0 commit comments

Comments
 (0)