Esempio n. 1
0
 def test_page(self):
     posthog.page('distinct_id', 'https://posthog.com/contact')
     posthog.flush()
Esempio n. 2
0
 def test_flush(self):
     posthog.flush()
Esempio n. 3
0
 def test_identify(self):
     posthog.identify('distinct_id', {'email': '*****@*****.**'})
     posthog.flush()
Esempio n. 4
0
 def test_alias(self):
     posthog.alias('previousId', 'distinct_id')
     posthog.flush()
Esempio n. 5
0
 def test_track(self):
     posthog.capture('distinct_id', 'python module event')
     posthog.flush()
Esempio n. 6
0
 def test_page(self):
     posthog.page("distinct_id", "https://posthog.com/contact")
     posthog.flush()
Esempio n. 7
0
 def test_alias(self):
     posthog.alias("previousId", "distinct_id")
     posthog.flush()
Esempio n. 8
0
 def test_identify(self):
     posthog.identify("distinct_id", {"email": "*****@*****.**"})
     posthog.flush()
Esempio n. 9
0
 def test_track(self):
     posthog.capture("distinct_id", "python module event")
     posthog.flush()