"""Unit tests for reference_flowthrough_calculation schema.""" from abacus_contract.models import ReferenceFlowthroughCalculation from tests.utils.factories import ReferenceFlowthroughCalculationFactory def test_create_reference_flowthrough_calculation(): """Test creating a reference_flowthrough_calculation.""" ReferenceFlowthroughCalculationFactory.create() res = ReferenceFlowthroughCalculation.query.all() assert len(res) == 1