3
0
Fork 0

feat: add basic support for "reports" feature

not much here yet, but trying to keep it lean and unopinionated since
implementations will probably vary a bit
This commit is contained in:
Lance Edgar 2025-01-11 19:04:30 -06:00
parent 1bfab90d35
commit 20d4d4d93f
9 changed files with 395 additions and 1 deletions

View file

@ -557,6 +557,12 @@ app_title = WuttaTest
people = self.app.get_people_handler()
self.assertIsInstance(people, PeopleHandler)
def test_get_report_handler(self):
from wuttjamaican.reports import ReportHandler
handler = self.app.get_report_handler()
self.assertIsInstance(handler, ReportHandler)
def test_send_email(self):
from wuttjamaican.email import EmailHandler