ass-core 0.1.2

High-performance ASS subtitle format parser and analyzer
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Comprehensive tests for plugin system functionality.
//!
//! Split into focused submodules, each kept under the 200-line limit:
//!
//! - `mocks`: shared mock tag handler and section processor.
//! - `results`: `TagResult`/`SectionResult` equality and `PluginError` display.
//! - `registry_basic`: registry construction and handler registration.
//! - `registry_process`: tag and section processing dispatch.
//! - `registry_management`: removal, clearing, naming, and debug output.
//! - `validation`: handler and processor argument validation.

mod mocks;
mod registry_basic;
mod registry_management;
mod registry_process;
mod results;
mod validation;