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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
//! Unit tests for [`Config`] parsing, defaults, and section behaviour.
//!
//! Split by configuration area to keep each test source focused.
use super::*;
#[cfg(test)]
#[path = "tests_disabled_tools.rs"]
mod disabled_tools_tests;
#[cfg(test)]
#[path = "tests_prefer_native_editor.rs"]
mod prefer_native_editor_tests;
#[cfg(test)]
#[path = "tests_default_tool_categories.rs"]
mod default_tool_categories_tests;
#[cfg(test)]
#[path = "tests_no_degrade.rs"]
mod no_degrade_tests;
#[cfg(test)]
#[path = "tests_delta_explicit.rs"]
mod delta_explicit_tests;
#[cfg(test)]
#[path = "tests_rules_scope.rs"]
mod rules_scope_tests;
#[cfg(test)]
#[path = "tests_rules_injection.rs"]
mod rules_injection_tests;
#[cfg(test)]
#[path = "tests_permission_inheritance.rs"]
mod permission_inheritance_tests;
#[cfg(test)]
#[path = "tests_loop_detection_config.rs"]
mod loop_detection_config_tests;
#[cfg(test)]
#[path = "tests_extra_roots.rs"]
mod extra_roots_tests;
#[cfg(test)]
#[path = "tests_config_load_cache.rs"]
mod config_load_cache_tests;
#[cfg(test)]
#[path = "tests_cost_config.rs"]
mod cost_config_tests;
#[cfg(test)]
#[path = "tests_persist_global.rs"]
mod persist_global_tests;
#[cfg(test)]
#[path = "tests_max_index_threads.rs"]
mod max_index_threads_tests;
#[cfg(test)]
#[path = "tests_shell_timeout_and_writes.rs"]
mod shell_timeout_and_writes_tests;
#[cfg(test)]
#[path = "tests_config_path_visibility.rs"]
mod config_path_visibility_tests;
#[cfg(test)]
#[path = "tests_context_budget.rs"]
mod context_budget_tests;
#[cfg(test)]
#[path = "tests_config_profiles.rs"]
mod config_profiles_tests;