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
54
55
56
// =====================================================================================
// File: anchor_tests.rs
// Location: library/src/internal_tests/
// -------------------------------------------------------------------------------------
// Purpose:
// Internal tests for YAML anchor and alias handling in the babbel_yaml crate.
// These tests validate correct parsing and behavior of YAML anchors, aliases,
// and related edge cases, including anchor names with special characters,
// empty anchor values, and anchors on various node types.
//
// Context:
// - Part of the babbel_yaml project, a Rust YAML parser/serializer.
// - Tests are based on YAML specification examples and custom edge cases.
// - Ensures compliance with YAML anchor/alias semantics and robustness.
//
// -------------------------------------------------------------------------------------
// Test Coverage:
// - Anchor names with special characters (e.g., colon)
// - Empty anchor values
// - Anchors on sequences and mappings
// - Alias resolution
// - Panic safety for malformed anchors/aliases
// =====================================================================================