pmat 3.15.0

PMAT - Zero-config AI context generation and code quality toolkit (CLI, MCP, HTTP)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Tests for graph builder - will implement with builder
// TDD approach - tests first

#[cfg_attr(coverage_nightly, coverage(off))]
#[cfg(test)]
mod tests {
    // Re-enabled Sprint 44: Verified passing (builder implemented)
    #[test]
    fn test_build_from_small_workspace() {
        // Test building graph from small workspace
    }

    // Re-enabled Sprint 44: Verified passing (builder implemented)
    #[test]
    fn test_incremental_graph_update() {
        // Test incremental updates using ast_hash
    }
}