graphrag-core 0.2.0

Core portable library for GraphRAG - works on native and WASM
Documentation
//! Tests for ROGRAG components

#[cfg(test)]
mod tests {
    use super::*;

    #[cfg(feature = "rograg")]
    #[test]
    fn test_rograg_module_basic() {
        // Just test that the module compiles
        assert!(true);
    }

    #[cfg(feature = "rograg")]
    #[test]
    fn test_config_creation() {
        let config = crate::rograg::RogragConfig::default();
        assert_eq!(config.max_subqueries, 5);
        assert_eq!(config.fuzzy_threshold, 0.7);
        assert!(config.enable_streaming);
    }
}