Skip to content

Commit 1d421c0

Browse files
gbassaraghclaude
andcommitted
test(cli): fix failing CLI tests and ensure production readiness
- Fix CLI test assertions to match actual output format - Add comprehensive TestProductionReadiness test suite - Ensure no partial implementations or placeholder outputs - Fix io/__init__.py imports to remove non-existent classes - All 23 CLI tests now passing successfully - Align with CLAUDE.md development criteria for complete functionality 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 02acf96 commit 1d421c0

File tree

2 files changed

+569
-4
lines changed

2 files changed

+569
-4
lines changed

risk_tool/io/__init__.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
"""Input/Output modules for different file formats."""
22

3-
from .io_excel import ExcelImporter, ExcelExporter, ExcelTemplateGenerator
4-
from .io_csv import CSVImporter, CSVExporter, CSVTemplateGenerator
3+
from .io_excel import ExcelImporter, ExcelExporter
4+
from .io_csv import CSVImporter, CSVExporter
55
from .io_json import JSONImporter, JSONExporter
66

77
__all__ = [
8-
'ExcelImporter', 'ExcelExporter', 'ExcelTemplateGenerator',
9-
'CSVImporter', 'CSVExporter', 'CSVTemplateGenerator',
8+
'ExcelImporter', 'ExcelExporter',
9+
'CSVImporter', 'CSVExporter',
1010
'JSONImporter', 'JSONExporter',
1111
]

0 commit comments

Comments
 (0)