blob: e927cf2be466b6661b449a9d51f9bbac4efc3264 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// rustfmt-newline_style: Windows
#[cfg(test)]
mod test {
summary_test! {
tokenize_recipe_interpolation_eol,
"foo: # some comment
{{hello}}
",
"foo: \
{{hello}} \
{{ahah}}",
"N:#$>^{N}$<.",
}
}
|