Files
Odoo-Modules/fusion_accounting/fusion_accounting_followup/tests/test_followup_cron.py
gsinghpal 9ebf89bde2 changes
2026-05-16 13:18:52 -04:00

19 lines
478 B
Python

"""Smoke tests for the fusion follow-up cron handlers."""
from odoo.tests import tagged
from odoo.tests.common import TransactionCase
@tagged('post_install', '-at_install')
class TestFollowupCron(TransactionCase):
def setUp(self):
super().setUp()
self.cron = self.env['fusion.followup.cron']
def test_cron_daily_scan_runs(self):
self.cron._cron_daily_scan()
def test_cron_risk_refresh_runs(self):
self.cron._cron_risk_refresh()