Representation work

This commit is contained in:
Greg Shuflin
2023-01-22 14:25:10 -08:00
parent 864246c24a
commit 2fd8b1be16
8 changed files with 75 additions and 12 deletions

View File

@@ -25,7 +25,7 @@ proptest! {
#[test]
fn test_parsing() {
let output = literal("a")("a yolo");
let output = literal("a").parse("a yolo");
assert_eq!(output.unwrap(), ("a", " yolo"));
}