()
| 417 | |
| 418 | #[tokio::test] |
| 419 | async fn test_database_size() { |
| 420 | let (db, _dir) = setup_db().await; |
| 421 | let size = db.size().await.expect("size should not fail"); |
| 422 | assert!(size > 0, "database should have non-zero size"); |
| 423 | } |
| 424 | |
| 425 | // --------------------------------------------------------------------------- |
| 426 | // Migration v7: attrs_start_line column add + backfill |