1 2 3 4 5 6 7 8 9 10 11 12
//! Integration tests for the scripting system. //! //! Covers: script configuration, integration with manager/process, //! command dispatch, observer bridge, and protocol serialization. mod script_command_dispatch_tests; mod script_integration_tests; mod script_manager_tests; mod script_observer_tests; mod script_process_tests; mod script_protocol_tests; mod scripting_config_tests;