Fix formatting with cargo fmt

This commit is contained in:
Dirkjan Ochtman 2018-07-02 09:28:02 +02:00
parent 3fdf1c7a37
commit ec2e873d73
2 changed files with 28 additions and 7 deletions

View File

@ -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]

View File

@ -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());