cartog-db 0.29.4

SQLite persistence layer for cartog code graph
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Unit tests for cartog-db, split by concern.

use crate::*;

pub(super) fn test_symbol(name: &str, kind: SymbolKind, file: &str, line: u32) -> Symbol {
    Symbol::new(name, kind, file, line, line + 5, 0, 100, None)
}

mod atomicity;
mod crud;
mod errors;
mod migration;
mod normalize;
mod rag;
mod resolution;
mod resolution_state;
mod traversal;