lfcm/tests/integration_tests.rs

17 lines
231 B
Rust

use lfcm::config;
config! {
param name = Config;
section top {
var rand: u64 = 42;
section database {
var seed: u64 = 42;
}
}
}
#[test]
fn test_parser() {
//println!("{:?}");
}