Skip to content

Commit

Permalink
Added path and ext tests
Browse files Browse the repository at this point in the history
  • Loading branch information
vallentin committed Mar 10, 2021
1 parent e70391f commit 6cdc8df
Show file tree
Hide file tree
Showing 4 changed files with 70 additions and 0 deletions.
1 change: 1 addition & 0 deletions testing/templates/foo.html
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo.html
1 change: 1 addition & 0 deletions testing/templates/foo.html.jinja
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo.html.jinja
1 change: 1 addition & 0 deletions testing/templates/foo.jinja
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
foo.jinja
67 changes: 67 additions & 0 deletions testing/tests/ext.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
use askama::Template;

#[derive(Template)]
#[template(path = "foo.html")]
struct PathHtml;

#[test]
fn test_path_ext_html() {
let t = PathHtml;
assert_eq!(t.render().unwrap(), "foo.html");
assert_eq!(t.extension(), Some("html"));
}

#[derive(Template)]
#[template(path = "foo.jinja")]
struct PathJinja;

#[test]
fn test_path_ext_jinja() {
let t = PathJinja;
assert_eq!(t.render().unwrap(), "foo.jinja");
assert_eq!(t.extension(), Some("jinja"));
}

#[derive(Template)]
#[template(path = "foo.html.jinja")]
struct PathHtmlJinja;

#[test]
fn test_path_ext_html_jinja() {
let t = PathHtmlJinja;
assert_eq!(t.render().unwrap(), "foo.html.jinja");
assert_eq!(t.extension(), Some("html"));
}

#[derive(Template)]
#[template(path = "foo.html", ext = "txt")]
struct PathHtmlAndExtTxt;

#[test]
fn test_path_ext_html_and_ext_txt() {
let t = PathHtmlAndExtTxt;
assert_eq!(t.render().unwrap(), "foo.html");
assert_eq!(t.extension(), Some("txt"));
}

#[derive(Template)]
#[template(path = "foo.jinja", ext = "txt")]
struct PathJinjaAndExtTxt;

#[test]
fn test_path_ext_jinja_and_ext_txt() {
let t = PathJinjaAndExtTxt;
assert_eq!(t.render().unwrap(), "foo.jinja");
assert_eq!(t.extension(), Some("txt"));
}

#[derive(Template)]
#[template(path = "foo.html.jinja", ext = "txt")]
struct PathHtmlJinjaAndExtTxt;

#[test]
fn test_path_ext_html_jinja_and_ext_txt() {
let t = PathHtmlJinjaAndExtTxt;
assert_eq!(t.render().unwrap(), "foo.html.jinja");
assert_eq!(t.extension(), Some("txt"));
}

0 comments on commit 6cdc8df

Please sign in to comment.