frentui 0.1.0

Interactive TUI for batch file renaming using freneng
Documentation
//! Tests for the Render UI module
//!
//! Note: Most rendering functions require a Frame which is difficult to create in unit tests.
//! These tests focus on verifying the module structure and that functions exist.

#[test]
fn test_render_module_exists() {
    // Functions exist (we can't easily test rendering without a Frame)
    // This test just verifies the module compiles
    assert!(true);
}

#[test]
fn test_render_functions_exist() {
    // Verify function signatures exist
    // render_ui, render_action_dialog, render_template_selection_dialog
    // These are tested via integration/functional tests
    assert!(true);
}