roo_engine 0.1.0

Roo is a smart bookmarking and productivity tool that works as a custom search engine for your browser
Documentation
1
2
3
4
5
6
7
8
use crate::parser;

#[test]
fn load_config_should_load_rules_in_file() {
    let rules = parser::load_config(&String::from("rules.toml"));

    assert!(rules.len() > 0);
}