repl-core 1.14.2

Core REPL engine for the Symbi platform
1
2
3
4
5
6
7
8
mod common;
use repl_core::parse_policy;

#[test]
fn test_simple_policy() {
    let policy = common::read_file("tests/samples/simple_policy.policy");
    assert!(parse_policy(&policy).is_ok());
}