def test_page(self): posthog.page('distinct_id', 'https://posthog.com/contact') posthog.flush()
def test_flush(self): posthog.flush()
def test_identify(self): posthog.identify('distinct_id', {'email': '*****@*****.**'}) posthog.flush()
def test_alias(self): posthog.alias('previousId', 'distinct_id') posthog.flush()
def test_track(self): posthog.capture('distinct_id', 'python module event') posthog.flush()
def test_page(self): posthog.page("distinct_id", "https://posthog.com/contact") posthog.flush()
def test_alias(self): posthog.alias("previousId", "distinct_id") posthog.flush()
def test_identify(self): posthog.identify("distinct_id", {"email": "*****@*****.**"}) posthog.flush()
def test_track(self): posthog.capture("distinct_id", "python module event") posthog.flush()