"""Tests for the tax info report model.""" from payee.models.reports_tax_info import ReportsTaxInfo from tests.utils.factories import ReportsTaxInfoFactory def test_create_instance(account_tax_info_fixtures): instance = ReportsTaxInfoFactory.create() assert ReportsTaxInfo.get_by_id(instance.reports_tax_info_id) == instance