Closed jschalk closed 3 weeks ago
This PR contains cleanup changes across multiple test files and implementation files. The main changes involve updating data type references from 'FISCAL' to 'REAL' in database-related code, adjusting test assertions for SQL string positions, and adding a skeleton for a new brick dataframes function. There's also some commented-out test code that appears to be work in progress.
classDiagram
class TestAtomConfig {
+test_get_normalized_bud_table_build_ReturnsCorrectObj()
-FISCAL
+REAL
}
class TestNormalModels {
+all_columns_are_as_config_requires(mapper, config_category)
+print_out_expected_class_attribute_declarations(config_category)
-FISCAL
+REAL
}
classDiagram
class WorldTool {
+get_all_excel_bricksheets(dir: str) : set[str, str, str]
+get_all_brick_dataframes()
}
Change | Details | Files |
---|---|---|
Changed database column type from 'FISCAL' to 'REAL' in multiple locations |
|
src/f04_gift/test_atom/test_atom_config.py src/f04_gift/test_normal_models/test_normal_models.py |
Updated SQL string position assertions in tests |
|
src/f07_fiscal/test_fiscal_/test_journal_sqlstr_.py |
Added new brick dataframes functionality skeleton |
|
src/f10_world/world_tool.py src/f10_world/test/test__world_tool.py |
Summary by Sourcery
Clean up test files by updating assertions to reflect correct data types and string positions, and remove obsolete commented-out code.
Enhancements:
Chores: