aboutsummaryrefslogtreecommitdiffstats
path: root/testing (unfollow)
Commit message (Collapse)AuthorFilesLines
2018-07-02Remove accidentally committed debugging cruftLibravatar Dirkjan Ochtman1-1/+1
2018-07-02Fix formatting with cargo fmtLibravatar Dirkjan Ochtman1-4/+16
2018-06-28Add benchmarks to the Askama repoLibravatar Dirkjan Ochtman4-0/+84
2018-06-25Add test for 'truncate' filterLibravatar Dirkjan Ochtman1-0/+14
2018-06-25Add test for 'loop.first' variableLibravatar Dirkjan Ochtman2-2/+2
2018-06-23Add test for range operatorsLibravatar Dirkjan Ochtman2-0/+19
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 Ochtman2-0/+7
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 Ochtman4-0/+135
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-21Forgot to add new test templatesLibravatar Dirkjan Ochtman2-0/+8
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 Ochtman2-0/+13
2018-04-02Fix whitespace handling for include blocks (fixes #69)Libravatar Dirkjan Ochtman2-2/+2
2018-01-29`build = "build.rs"` is no longer necessaryLibravatar Paul Woolcock1-1/+0
For all rust versions >= 1.19, cargo will assume `build = "build.rs"` if it sees a `build.rs` file in the same directory as the `Cargo.toml`
2018-01-19infer Content-type from the file extension for iron integrationLibravatar Hajime Fukuda2-0/+21
2018-01-05relax the version specificationLibravatar Hajime Fukuda1-1/+1
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 Nowell2-0/+27
2017-11-02Make match ref/deref as neededLibravatar Anthony Nowell2-0/+33
Much of this can be yanked out and made simpler when match-modes lands in stable
2017-11-02support literals in match armsLibravatar Anthony Nowell3-6/+36
2017-11-02implement basic match functionalityLibravatar Anthony Nowell2-0/+24
2017-10-22Make empty string literals workLibravatar Dirkjan Ochtman1-2/+2
2017-10-20Add support for array literals (fixes #59)Libravatar Dirkjan Ochtman1-0/+11
2017-10-15Add scope when importing macrosLibravatar Lars Erik Rosengren1-2/+2
2017-10-04Add test for path expressions (see #56)Libravatar Dirkjan Ochtman1-0/+18
2017-10-01Fix whitespace handling for macros and imports (#55)Libravatar larros3-7/+17
Resolves https://github.com/djc/askama/issues/52. * Fix of review comments
2017-09-26Add support for importing template files with macros (#51)Libravatar larros2-0/+14
* Fix review comments for macro imports
2017-09-10Add support for tuple indexing in templatesLibravatar Lars Erik Rosengren2-0/+13
2017-09-07Extend escaping according to OWASP recommendationsLibravatar Dirkjan Ochtman1-3/+4
2017-09-07Move JSON test into filters test moduleLibravatar Dirkjan Ochtman2-28/+31
2017-09-07Move escaping tests into a separate moduleLibravatar Dirkjan Ochtman1-52/+0
2017-09-07Add test case for inferred escape modeLibravatar Dirkjan Ochtman1-0/+13
2017-09-07Make ext attribute mandatory for source-specified templatesLibravatar Dirkjan Ochtman3-5/+5
2017-09-05Add some tests for escaping functionalityLibravatar Dirkjan Ochtman1-0/+39
2017-09-04Moved precedence test into operators moduleLibravatar Dirkjan Ochtman2-15/+11
2017-09-03Changed implementation of precedence rulesLibravatar Lars Erik Rosengren2-0/+22
This implementation resolves djc/askama#44 by changing the precedence implementation. The previous solution was very slow because it had to try to parse all combinations of precedence layers leading to 2^9 iterations for each expr_any. This is solved by reusing the left operand instead of reparsing it when the operator isn't found. This implementation also solves another related issue that expressions with multiple operators couldn't be parsed, for example {{1 * 2 * 3}}. This is handled by using expr_any for the right operand instead of only using higher level precedence layers.
2017-09-02Add `join` filter & tests for itLibravatar defyrlt2-0/+26