test_def_file_modify
Functions:
all_datatypes_dict
all_datatypes_dict() -> dict
Source code in tests/test_def_file_modify.py
21 22 23 | |
all_datatypes_modified
all_datatypes_modified() -> str
Source code in tests/test_def_file_modify.py
31 32 33 | |
all_datatypes_str
all_datatypes_str() -> str
Source code in tests/test_def_file_modify.py
26 27 28 | |
includedef_add_str
includedef_add_str() -> str
Source code in tests/test_def_file_modify.py
41 42 43 | |
includedef_everything_str
includedef_everything_str() -> str
Source code in tests/test_def_file_modify.py
46 47 48 | |
includedef_ref
includedef_ref() -> dict
Source code in tests/test_def_file_modify.py
36 37 38 | |
includedef_ref_str
includedef_ref_str() -> str
Source code in tests/test_def_file_modify.py
51 52 53 | |
includedef_remove_str
includedef_remove_str() -> str
Source code in tests/test_def_file_modify.py
56 57 58 | |
test_append_kv
test_append_kv(three_kv_str, three_kv_dict)
Test appending of key-value pairs at the end
Source code in tests/test_def_file_modify.py
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 | |
test_modify_single_kv
test_modify_single_kv(three_kv_str, three_kv_dict)
Test modifications of key-value pairs at different positions
Source code in tests/test_def_file_modify.py
96 97 98 99 100 101 102 103 104 105 106 | |
test_modify_values_str
test_modify_values_str(
all_datatypes_dict,
all_datatypes_str,
all_datatypes_modified,
)
Source code in tests/test_def_file_modify.py
126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 | |
test_modifys_includedef_add
test_modifys_includedef_add(
includedef_ref, includedef_ref_str, includedef_add_str
)
Source code in tests/test_def_file_modify.py
168 169 170 171 | |
test_modifys_includedef_empty
test_modifys_includedef_empty(
includedef_ref,
includedef_ref_str,
includedef_remove_str,
)
Source code in tests/test_def_file_modify.py
182 183 184 185 186 | |
test_modifys_includedef_everything
test_modifys_includedef_everything(
includedef_ref,
includedef_ref_str,
includedef_everything_str,
)
Source code in tests/test_def_file_modify.py
189 190 191 192 193 194 195 196 | |
test_modifys_includedef_ref
test_modifys_includedef_ref(
includedef_ref, includedef_ref_str
)
Test if making no changes doesn't change the input text!
Source code in tests/test_def_file_modify.py
163 164 165 | |
test_modifys_includedef_remove
test_modifys_includedef_remove(
includedef_ref,
includedef_ref_str,
includedef_remove_str,
)
Source code in tests/test_def_file_modify.py
174 175 176 177 178 179 | |
test_null_modify
test_null_modify(all_datatypes_dict, all_datatypes_str)
Test modification with no modifications!
Source code in tests/test_def_file_modify.py
71 72 73 74 75 76 77 78 79 | |
test_remove_single_kv
test_remove_single_kv(three_kv_str, three_kv_dict)
Test removal of key-value pairs at different positions
Source code in tests/test_def_file_modify.py
82 83 84 85 86 87 88 89 90 91 92 93 | |
three_kv_dict
three_kv_dict() -> dict
Source code in tests/test_def_file_modify.py
66 67 68 | |
three_kv_str
three_kv_str() -> str
Source code in tests/test_def_file_modify.py
61 62 63 | |