![Ethiraric](/assets/img/avatar_default.png)
This would make more sense in user code: ```rs Yaml::load_from_str("foo"); // Explicit that we're parsing YAML load_from_str("foo"); // Too implicit, too generic, may be from another lib ``` Plus, this mirrors `MarkedYaml`'s behavior.
21 lines
635 B
Rust
21 lines
635 B
Rust
#[macro_use]
|
|
extern crate quickcheck;
|
|
|
|
use quickcheck::TestResult;
|
|
|
|
use saphyr::{Yaml, YamlEmitter};
|
|
|
|
quickcheck! {
|
|
fn test_check_weird_keys(xs: Vec<String>) -> TestResult {
|
|
let mut out_str = String::new();
|
|
let input = Yaml::Array(xs.into_iter().map(Yaml::String).collect());
|
|
{
|
|
let mut emitter = YamlEmitter::new(&mut out_str);
|
|
emitter.dump(&input).unwrap();
|
|
}
|
|
match Yaml::load_from_str(&out_str) {
|
|
Ok(output) => TestResult::from_bool(output.len() == 1 && input == output[0]),
|
|
Err(err) => TestResult::error(err.to_string()),
|
|
}
|
|
}
|
|
}
|