ralph-workflow 0.7.18

PROMPT-driven multi-agent orchestrator for git repos
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
// Tests for deduplication module.

#[cfg(test)]
mod tests {
    use super::*;
    use crate::json_parser::deduplication::kmp_matcher::KMPMatcher;

    include!("io_tests/rolling_hash_window.rs");
    include!("io_tests/kmp_matcher.rs");
    include!("io_tests/delta_deduplicator.rs");
    include!("io_tests/overlap_thresholds.rs");
}