feat: basic telemetry collection/submission feature

This commit is contained in:
Lance Edgar 2025-08-09 12:05:18 -05:00
commit 53f599fa79
29 changed files with 1710 additions and 0 deletions

16
tests/test_app.py Normal file
View file

@ -0,0 +1,16 @@
# -*- coding: utf-8; -*-
from wuttjamaican.testing import ConfigTestCase
from wuttatell import app as mod
from wuttatell.telemetry import TelemetryHandler
class TestWuttaTellAppProvider(ConfigTestCase):
def make_provider(self):
return mod.WuttaTellAppProvider(self.config)
def test_get_telemetry_handler(self):
handler = self.app.get_telemetry_handler()
self.assertIsInstance(handler, TelemetryHandler)