1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
// =====================================================================================
// File: mod.rs
// Location: library/src/internal_tests/
// -------------------------------------------------------------------------------------
// Purpose:
// Module declaration file for internal tests in the babbel_yaml crate.
// This file organizes and includes all internal test modules, ensuring
// comprehensive test coverage for YAML parsing, serialization, and validation.
//
// Context:
// - Part of the babbel_yaml project, a Rust YAML parser/serializer.
// - Centralizes internal test module imports for maintainability and clarity.
// - Supports both standard and embedded system test configurations.
//
// -------------------------------------------------------------------------------------
// Module Coverage:
// - Parsing, serialization, and error handling tests
// - Format-specific tests (JSON, TOML, Bencode)
// - Edge cases, validation, and embedded system scenarios
// =====================================================================================
// Original internal test modules
// New organized internal test modules (split from parser_stringify_integration)
// Embedded systems internal tests
// Official YAML test suite failing cases