Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ANSI-301-2022 Envelope 2 #724

Merged
merged 14 commits into from
Apr 30, 2024
10 changes: 10 additions & 0 deletions rulesets/tests/test_enclosure.rb
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,16 @@ def teardown
FileUtils.rm_rf(@results_path) if Dir.exist? @results_path
end

def test_ground_conductivity
# Test ground conductivity
hpxml_name = 'base.xml'

_all_calc_types.each do |calc_type|
_hpxml, hpxml_bldg = _test_ruleset(hpxml_name, calc_type)
assert_equal(1.0, hpxml_bldg.site.ground_conductivity)
end
end

def test_enclosure_infiltration
# Test w/o mech vent
hpxml_name = 'base.xml'
Expand Down