From 80afe795cdd13d627b95db5218b5d252eac26a5e Mon Sep 17 00:00:00 2001 From: Tom Alexander Date: Tue, 18 Apr 2023 23:57:57 -0400 Subject: [PATCH] Print out the org source text also. --- tests/test_template | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_template b/tests/test_template index ebe8f9e0..1401f765 100644 --- a/tests/test_template +++ b/tests/test_template @@ -2,6 +2,7 @@ fn {name}() {{ let todo_org_path = "{path}"; let org_contents = std::fs::read_to_string(todo_org_path).expect("Read org file."); + println!("{{}}", org_contents); let org_sexp = emacs_parse_org_document(todo_org_path).expect("Use emacs to parse org file."); println!("{{}}", org_sexp); let (_remaining, parsed_sexp) = sexp(org_sexp.as_str()).expect("Sexp Parse failure");