1 2 3 4 5 6 7 8 9 10 11 12
//! Template rendering tests //! //! Tests for template rendering functionality: //! - Basic template rendering //! - Content filter (`{{ 'path' | content }}`) functionality //! - Project-level template variables //! - Resource-specific template variables mod basic; mod content_filter; mod project_vars; mod resource_vars;