diff options
Diffstat (limited to 'askama_test/tests/simple.rs')
-rw-r--r-- | askama_test/tests/simple.rs | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/askama_test/tests/simple.rs b/askama_test/tests/simple.rs deleted file mode 100644 index 0943f12..0000000 --- a/askama_test/tests/simple.rs +++ /dev/null @@ -1,28 +0,0 @@ -#![feature(proc_macro)] - -#[macro_use] -extern crate askama_derive; -extern crate askama; - -use askama::Template; - -#[derive(Template)] -#[template(path = "simple.html")] -struct TestTemplate { - strvar: String, - num: i64, - i18n: String, -} - -#[test] -fn it_works() { - let s = TestTemplate { - strvar: "foo".to_string(), - num: 42, - i18n: "Iñtërnâtiônàlizætiøn".to_string(), - }; - assert_eq!(s.render(), "hello world, foo\n\ - with number: 42\n\ - Iñtërnâtiônàlizætiøn is important\n\ - in vars too: Iñtërnâtiônàlizætiøn\n"); -} |