a b/tests/spec/toc.py
1
# Table of contents for documentation generated from specs
2
3
contents = {
4
    "filter": [
5
        "test_where",
6
        "test_except_where",
7
    ],
8
    "sort_and_pick": [
9
        "test_sort_by_column_and_pick",
10
        "test_sort_by_multiple_columns_and_pick",
11
        "test_sort_by_column_with_nulls_and_pick",
12
        "test_sort_by_interleaved_with_where",
13
    ],
14
    "aggregate_frame": [
15
        "test_exists_for_patient",
16
        "test_count_for_patient",
17
    ],
18
    "aggregate_series": [
19
        "test_minimum_and_maximum_for_patient",
20
        "test_sum_for_patient",
21
        "test_mean_for_patient",
22
        "test_count_distinct_for_patient",
23
    ],
24
    "combine_series": [
25
        "test_patient_series_and_patient_series",
26
        "test_patient_series_and_value",
27
        "test_event_series_and_event_series",
28
        "test_event_series_and_patient_series",
29
        "test_event_series_and_value",
30
    ],
31
    "series_ops": [
32
        "test_equality",
33
        "test_containment",
34
        "test_containment_with_series",
35
        "test_map_values",
36
        "test_when_null_then",
37
        "test_maximum_of_and_minimum_of_patient_series",
38
        "test_maximum_of_and_minimum_of_event_series",
39
    ],
40
    "bool_series_ops": [
41
        "test_logical_ops",
42
        "test_conversion",
43
    ],
44
    "int_series_ops": [
45
        "test_arithmetic_ops",
46
        "test_comparison_ops",
47
    ],
48
    "code_series_ops": [
49
        "test_containment",
50
        "test_map_codes_to_categories",
51
    ],
52
    "multi_code_string_series_ops": [
53
        "test_containment",
54
    ],
55
    "case_expressions": [
56
        "test_case",
57
        "test_when",
58
    ],
59
    "date_series_ops": [
60
        "test_date_series_ops",
61
        "test_date_comparisons",
62
        "test_date_comparison_types",
63
        "test_date_aggregations",
64
    ],
65
    "str_series_ops": [
66
        "test_contains",
67
    ],
68
    "population": [
69
        "test_population",
70
    ],
71
    "table_from_rows": [
72
        "test_table_from_rows",
73
    ],
74
}