"""tests for TermsAndConditionsPersister class.""" from collaborator.models.rds.terms_and_conditions_persister import ( TermsAndConditionsPersister, ) from tests.testutils import db @db.test_schema_default_seed def test_get_latest_terms_and_conditions(mock_account): """Test getting latest terms and conditions.""" result = TermsAndConditionsPersister.get_latest() assert result == {"id": 2, "template": "
{{brand}}
"}