diff options
-rw-r--r-- | askama_shared/src/filters/mod.rs | 15 | ||||
-rw-r--r-- | testing/benches/all.rs | 20 |
2 files changed, 28 insertions, 7 deletions
diff --git a/askama_shared/src/filters/mod.rs b/askama_shared/src/filters/mod.rs index f0a6090..03128e6 100644 --- a/askama_shared/src/filters/mod.rs +++ b/askama_shared/src/filters/mod.rs @@ -155,14 +155,23 @@ mod tests { #[test] fn test_linebreaks() { - assert_eq!(linebreaks(&"Foo\nBar Baz").unwrap(), "<p>Foo<br/>Bar Baz</p>"); - assert_eq!(linebreaks(&"Foo\nBar\n\nBaz").unwrap(), "<p>Foo<br/>Bar</p><p>Baz</p>"); + assert_eq!( + linebreaks(&"Foo\nBar Baz").unwrap(), + "<p>Foo<br/>Bar Baz</p>" + ); + assert_eq!( + linebreaks(&"Foo\nBar\n\nBaz").unwrap(), + "<p>Foo<br/>Bar</p><p>Baz</p>" + ); } #[test] fn test_linebreaksbr() { assert_eq!(linebreaksbr(&"Foo\nBar").unwrap(), "Foo<br/>Bar"); - assert_eq!(linebreaksbr(&"Foo\nBar\n\nBaz").unwrap(), "Foo<br/>Bar<br/><br/>Baz"); + assert_eq!( + linebreaksbr(&"Foo\nBar\n\nBaz").unwrap(), + "Foo<br/>Bar<br/><br/>Baz" + ); } #[test] diff --git a/testing/benches/all.rs b/testing/benches/all.rs index 862bd06..a52374c 100644 --- a/testing/benches/all.rs +++ b/testing/benches/all.rs @@ -37,10 +37,22 @@ fn teams(b: &mut criterion::Bencher) { let teams = Teams { year: 2015, teams: vec![ - Team { name: "Jiangsu".into(), score: 43 }, - Team { name: "Beijing".into(), score: 27 }, - Team { name: "Guangzhou".into(), score: 22 }, - Team { name: "Shandong".into(), score: 12 }, + Team { + name: "Jiangsu".into(), + score: 43, + }, + Team { + name: "Beijing".into(), + score: 27, + }, + Team { + name: "Guangzhou".into(), + score: 22, + }, + Team { + name: "Shandong".into(), + score: 12, + }, ], }; b.iter(|| teams.render().unwrap()); |