Skip to content

Commit

Permalink
1. Fix break test
Browse files Browse the repository at this point in the history
  • Loading branch information
denisandroid committed Apr 2, 2024
1 parent d326b90 commit 04a681f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tests/break.rs
Original file line number Diff line number Diff line change
Expand Up @@ -14,5 +14,12 @@ fn test_empty_tt() {
stringify!(#include!("./tests/empty.tt"))
};

assert_eq!(str, "# include! (\"./tests/empty.tt\")");
assert_eq!(
str,
"#include!(\"./tests/empty.tt\")"
);
assert_eq!(
stringify!(#include!("./tests/empty.tt")),
"#include!(\"./tests/empty.tt\")"
);
}

0 comments on commit 04a681f

Please sign in to comment.