()
| 262 | |
| 263 | #[tokio::test] |
| 264 | async fn test_get_table_not_found() { |
| 265 | let ctx = setup_test_server(vec!["default"]).await; |
| 266 | |
| 267 | let result = ctx |
| 268 | .api |
| 269 | .get_table(&Identifier::new("default", "non_existent_table")) |
| 270 | .await; |
| 271 | assert!(result.is_err(), "getting non-existent table should fail"); |
| 272 | } |
| 273 | |
| 274 | #[tokio::test] |
| 275 | async fn test_list_tables_empty_database() { |
nothing calls this directly
no test coverage detected