diff options
author | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-04-12 19:49:16 +0200 |
---|---|---|
committer | Dirkjan Ochtman <dirkjan@ochtman.nl> | 2018-04-12 19:49:51 +0200 |
commit | e46e2d6b02394eea8ffe7ac723469b9b114e234c (patch) | |
tree | c0c0d05e736a8a474f1f01cd1a1f8770a8e8bd46 /testing/tests/matches.rs | |
parent | e03df3d9690e228a7a076107d64057c28d63cdfa (diff) | |
download | askama-e46e2d6b02394eea8ffe7ac723469b9b114e234c.tar.gz askama-e46e2d6b02394eea8ffe7ac723469b9b114e234c.tar.bz2 askama-e46e2d6b02394eea8ffe7ac723469b9b114e234c.zip |
Handle a lack of whitespace after match block (fixes #76)
Diffstat (limited to 'testing/tests/matches.rs')
-rw-r--r-- | testing/tests/matches.rs | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/testing/tests/matches.rs b/testing/tests/matches.rs index 8f4b05c..9fae70c 100644 --- a/testing/tests/matches.rs +++ b/testing/tests/matches.rs @@ -82,3 +82,15 @@ fn test_match_custom_enum() { let s = MatchCustomEnumTemplate { color: Color::Rgb(160, 0, 255) }; assert_eq!(s.render().unwrap(), "\n\nColorful: #A000FF\n"); } + +#[derive(Template)] +#[template(path = "match-no-ws.html")] +struct MatchNoWhitespace { + foo: Option<usize>, +} + +#[test] +fn test_match_no_whitespace() { + let s = MatchNoWhitespace { foo: Some(1) }; + assert_eq!(s.render().unwrap(), "1"); +} |