aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-12-10Implement `IntoResponse` for `Template`, allowing them to be used in ↵Libravatar Kellen Frodelius-Fujimoto1-0/+39
`gotham` handlers.
2018-12-08Use 2018 edition idiomsLibravatar Dirkjan Ochtman15-32/+1
2018-12-08Remove unused macro_use attributesLibravatar Dirkjan Ochtman15-16/+1
2018-12-08Upgrade to Rocket 0.4Libravatar Dirkjan Ochtman1-2/+2
2018-12-07Fix cargo fmtLibravatar Juan Aguilar Santillana2-8/+2
2018-11-11Add e2e test for escapeLibravatar bott1-0/+16
2018-11-04Disable tests that need dependencies by defaultLibravatar Dirkjan Ochtman2-0/+5
2018-11-04use UFCS in derived codeLibravatar Yusuke Sasaki1-0/+12
2018-10-20Add test for unescaped variable expressions (see #132)Libravatar Qian Linfeng1-0/+24
2018-10-12make `Template::extension()` staticLibravatar Yusuke Sasaki1-1/+1
It is useful for calculating the media type without instantiating the context value.
2018-10-08Fix formattingLibravatar Dirkjan Ochtman1-1/+1
2018-10-08Clean up warning about unused fieldLibravatar Dirkjan Ochtman1-5/+3
2018-10-07Add Rust macro support at templatesLibravatar bott1-0/+22
2018-09-21fix panicked on range-based for loopLibravatar bott1-0/+13
2018-09-14Update formatting for rust 1.29.0 rustfmtLibravatar Dirkjan Ochtman2-4/+16
2018-09-14Fix operator preference at loop.indexLibravatar bott1-1/+1
2018-09-14Fix operator preference at loop.firstLibravatar bott1-0/+14
2018-09-07Fix deep nested imports in macro callsLibravatar bott1-0/+10
2018-09-02Add test for nested macro calls into different scopeLibravatar bott1-0/+10
2018-07-22Work around conflicting dependencies for actix-web and rocketLibravatar Dirkjan Ochtman2-1/+2
2018-07-22Add Template method to return template extensionLibravatar Dirkjan Ochtman1-0/+1
Thanks to Ryan McGrath for the suggestion and initial implementation.
2018-07-22Tests for actix_webLibravatar Ryan McGrath1-0/+29
2018-07-04Add test for unit structs (see #101)Libravatar Dirkjan Ochtman1-0/+9
2018-07-02Remove accidentally committed debugging cruftLibravatar Dirkjan Ochtman1-1/+1
2018-06-25Add test for 'truncate' filterLibravatar Dirkjan Ochtman1-0/+14
2018-06-25Add test for 'loop.first' variableLibravatar Dirkjan Ochtman1-1/+1
2018-06-23Add test for range operatorsLibravatar Dirkjan Ochtman1-0/+14
2018-06-23Remove accidental debugging cruftLibravatar Dirkjan Ochtman1-1/+1
2018-06-23Add test for Index operationLibravatar Dirkjan Ochtman1-0/+16
2018-06-22Add test for 'super' macroLibravatar Dirkjan Ochtman1-0/+6
2018-06-22Fix formatting with cargo fmtLibravatar Dirkjan Ochtman1-21/+33
2018-06-22Add test for flattened deep inheritanceLibravatar Dirkjan Ochtman1-0/+92
2018-06-22Add test for deep inheritanceLibravatar Dirkjan Ochtman1-0/+92
2018-06-21Fix formatting with cargo fmtLibravatar Dirkjan Ochtman10-52/+64
2018-05-27Reformat and rename method testing tests for better organizationLibravatar Dirkjan Ochtman1-13/+14
2018-05-27Add tests for calling methods on selfLibravatar Mika Lehtinen1-0/+42
2018-05-21Remove forgotten debugging cruftLibravatar Dirkjan Ochtman1-2/+2
2018-05-20Add support for nested blocks (fixes #85)Libravatar Dirkjan Ochtman1-0/+18
2018-04-27Add test for unary - operatorLibravatar Dirkjan Ochtman1-0/+13
2018-04-27Add test for ! operator (see #83)Libravatar Dirkjan Ochtman1-0/+13
2018-04-19Add test for filter in let statementLibravatar Dirkjan Ochtman1-0/+22
2018-04-17Properly handle whitespace around comments (fixes #79)Libravatar Dirkjan Ochtman1-0/+11
2018-04-17Add test for nested filters with references (see #76)Libravatar Dirkjan Ochtman1-0/+18
2018-04-12Handle a lack of whitespace after match block (fixes #76)Libravatar Dirkjan Ochtman1-0/+12
2018-04-02Fix whitespace handling for include blocks (fixes #69)Libravatar Dirkjan Ochtman1-1/+1
2018-01-19infer Content-type from the file extension for iron integrationLibravatar Hajime Fukuda1-0/+20
2017-12-25Add test case for cross-module inheritanceLibravatar Dirkjan Ochtman1-0/+29
2017-11-21Apply suggestions from rustfmt to improve styleLibravatar Dirkjan Ochtman7-29/+32
2017-11-02Support matching custom enumsLibravatar Anthony Nowell1-0/+19
2017-11-02Make match ref/deref as neededLibravatar Anthony Nowell1-0/+27
Much of this can be yanked out and made simpler when match-modes lands in stable