feat: basic telemetry collection/submission feature
This commit is contained in:
commit
53f599fa79
29 changed files with 1710 additions and 0 deletions
16
tests/test_app.py
Normal file
16
tests/test_app.py
Normal 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)
|
Loading…
Add table
Add a link
Reference in a new issue