fix(cli): add active_parsers + active_chunkers to Models test fixture in wire.rs (Bug #13)

Step 4 의 Models struct 확장 (active_parsers / active_chunkers 추가) 이
crates/kebab-cli/src/wire.rs 의 테스트 fixture 초기화를 누락 → E0063 컴파일 에러.
#[serde(default)] 는 serde 역직렬화 전용 — struct literal 초기화 에는 모든 field 필요.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-05-27 23:18:27 +00:00
parent 5bba95fd71
commit 854a180365

View File

@@ -332,6 +332,8 @@ mod tests {
models: Models {
parser_version: "x".to_string(),
chunker_version: "y".to_string(),
active_parsers: vec![],
active_chunkers: vec![],
embedding_version: "z".to_string(),
prompt_template_version: "w".to_string(),
index_version: "v".to_string(),