mirror of
https://github.com/DOI-DO/j40-cejst-2.git
synced 2025-07-28 13:41:17 -07:00
Issue 1831: missing life expectancy data from Maine and Wisconsin (#1887)
* Fixing missing states and adding tests for states to all classes
This commit is contained in:
parent
fb4c484e5c
commit
6e9c44ea72
21 changed files with 522 additions and 187 deletions
|
@ -65,7 +65,7 @@ class TestAbandondedLandMineETL(TestETL):
|
|||
initiliazed correctly.
|
||||
"""
|
||||
# setup
|
||||
etl = self._ETL_CLASS()
|
||||
etl = self._get_instance_of_etl_class()
|
||||
# validation
|
||||
assert etl.GEOID_FIELD_NAME == "GEOID10"
|
||||
assert etl.GEOID_TRACT_FIELD_NAME == "GEOID10_TRACT"
|
||||
|
@ -78,7 +78,7 @@ class TestAbandondedLandMineETL(TestETL):
|
|||
|
||||
def test_get_output_file_path(self, mock_etl, mock_paths):
|
||||
"""Tests the right file name is returned."""
|
||||
etl = self._ETL_CLASS()
|
||||
etl = self._get_instance_of_etl_class()
|
||||
data_path, tmp_path = mock_paths
|
||||
|
||||
output_file_path = etl._get_output_file_path()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue