aboutsummaryrefslogtreecommitdiffstats
path: root/testing/tests (unfollow)
Commit message (Collapse)AuthorFilesLines
2020-01-29Move Rocket integration into askama_rocket crateLibravatar Dirkjan Ochtman1-31/+0
2020-01-29Move Actix-Web integration into separate askama_actix crateLibravatar Dirkjan Ochtman1-54/+0
2020-01-12Improve spacingLibravatar Dirkjan Ochtman1-1/+1
2020-01-12Add test for let declarations in blocksLibravatar Dirkjan Ochtman1-0/+14
2020-01-12Write conditional blocks before popping variable stack (see #227)Libravatar Dirkjan Ochtman1-0/+15
2020-01-12Support escaping in string literalsLibravatar Tuomas Siipola1-0/+13
Do not attempt to parse escape sequences thoroughly. Instead let the Rust compiler to check the string literals and provide nice error messages if necessary.
2020-01-11upgrade dependencies(actix-web 0.7 -> 2)Libravatar DCjanus1-17/+22
2020-01-03Support char literalsLibravatar Tuomas Siipola2-1/+16
2020-01-02Clean up clippy warningsLibravatar Dirkjan Ochtman5-1/+11
2019-11-04Fix formatting with cargo fmtLibravatar Dirkjan Ochtman1-1/+4
2019-10-28Moved no-receiver size_hint method to a separate trait (#270)Libravatar jbg1-2/+2
2019-10-09Limit test sensitivity to macro pretty printing outputLibravatar Dirkjan Ochtman1-1/+1
See https://github.com/rust-lang/rust/issues/65207.
2019-10-08Add support for boolean literalsLibravatar Dave Poulter1-1/+1
2019-04-18WIP: Add raw blockLibravatar Pavel Fokin1-0/+23
2019-03-18Default to UTF-8 mime type for actix-web and gothamLibravatar Steven Pease2-3/+12
2019-03-18Move small templates into source codeLibravatar Dirkjan Ochtman1-2/+2
2019-03-18Remove second example for templates in templatesLibravatar Dirkjan Ochtman1-93/+0
2019-03-18FmtLibravatar Vicente Ramirez Perea1-1/+0
2019-03-18Fmt and complete test avoiding warning unused variant.Libravatar Vicente Ramirez Perea1-15/+29
2019-03-18Documenting feature render in templateLibravatar Vicente Ramirez Perea2-0/+119
2019-03-18Remove debugging cruftLibravatar Dirkjan Ochtman1-5/+1
2019-03-18Create heritage for extends-only templates (fixes #224)Libravatar Dirkjan Ochtman1-0/+12
2019-02-20Simplify actix-web implementationsLibravatar Dirkjan Ochtman1-2/+2
2019-02-20Allow referencing self as a variable (fixes #207)Libravatar Dirkjan Ochtman1-0/+14
2019-02-20Add TemplateResponder trait for integration with actix-webLibravatar Zizheng Tai1-1/+19
2019-01-08Add support for loop.lastLibravatar yossyJ1-2/+8
2019-01-04Add support for tupleLibravatar yossyJ2-1/+22
2018-12-13fix rust macro argumentsLibravatar Juan Aguilar Santillana1-0/+32
2018-12-12Allow using brackets for enums in `match`Libravatar mcarton1-2/+6
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.