We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Found this while modifying the tests for #148. The current implementation incorrectly parses examples 6.2 and 6.3 in the spec.
#[test] fn ex() { use yaml_rust::YamlLoader; let docs = YamlLoader::load_from_str("-\tb").unwrap(); assert_eq!(docs[0].as_vec().unwrap()[0].as_str().unwrap(), "b"); }
thread 'ex' panicked at 'assertion failed: `(left == right)` left: `"\tb"`, right: `"b"`', src\main.rs:100:5
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Found this while modifying the tests for #148. The current implementation incorrectly parses examples 6.2 and 6.3 in the spec.
The text was updated successfully, but these errors were encountered: