()
| 161 | |
| 162 | #[test] |
| 163 | fn test_table_not_found() { |
| 164 | let temp = create_test_repo(); |
| 165 | let mut repo = GitRepo::open(temp.path()).expect("Failed to open repo"); |
| 166 | let mut engine = SqlEngine::new().expect("Failed to create engine"); |
| 167 | |
| 168 | let result = engine.load_table("nonexistent_table", &mut repo); |
| 169 | assert!(matches!(result, Err(VcsqlError::TableNotFound(_)))); |
| 170 | } |
nothing calls this directly
no test coverage detected