agpm-cli 0.4.10

AGent Package Manager - A Git-based package manager for coding agents
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Template rendering tests
//!
//! Tests for template rendering functionality:
//! - Basic template rendering
//! - Content filter (`{{ 'path' | content }}`) functionality
//! - Project-level template variables
//! - Resource-specific template variables
//! - Enhanced error handling and clarity

mod content_filter;
mod error_clarity;
mod project_vars;
mod resource_vars;
mod test_basic_rendering;
mod test_edge_cases;
mod test_template_validation;