mirror of
https://github.com/Hestia-Homes/Model.git
synced 2026-07-27 23:35:01 +00:00
Bill title-cased dual-fuel secondary heaters at Table 32 code 10 🟥
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
223edb0066
commit
4af086112a
1 changed files with 25 additions and 0 deletions
|
|
@ -1223,6 +1223,31 @@ class TestSecondaryHeatingTypeCoding:
|
|||
EpcPropertyDataMapper.from_site_notes(survey)
|
||||
|
||||
|
||||
class TestSecondaryFuelTypeCodingDualFuel:
|
||||
"""The secondary-heating survey field lodges the dual-fuel appliance
|
||||
title-cased ("Dual Fuel Appliance (Mineral and Wood)"), unlike the
|
||||
sentence-case main-fuel label already mapped — exact-string lookups, so
|
||||
both tables need their own entry. Same physical fuel, same Table 32
|
||||
code 10 the main-fuel path pins."""
|
||||
|
||||
def test_title_case_dual_fuel_maps_to_table_32_code_10(self) -> None:
|
||||
# Arrange
|
||||
data = load("pashub_rdsap_site_notes_example1.json")
|
||||
data["heating_and_hot_water"]["secondary_heating"][
|
||||
"secondary_fuel"
|
||||
] = "Dual Fuel Appliance (Mineral and Wood)"
|
||||
data["heating_and_hot_water"]["secondary_heating"][
|
||||
"secondary_system"
|
||||
] = "Open fire in grate"
|
||||
survey = from_dict(PasHubRdSapSiteNotes, data)
|
||||
|
||||
# Act
|
||||
result = EpcPropertyDataMapper.from_site_notes(survey)
|
||||
|
||||
# Assert
|
||||
assert result.sap_heating.secondary_fuel_type == 10
|
||||
|
||||
|
||||
class TestSecondaryFuelTypeCoding:
|
||||
"""`from_site_notes` must int-code the PAS Hub secondary-heating
|
||||
`secondary_fuel` label to the SAP 10.2 Table 32 `secondary_fuel_type`
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue