| 144 | |
| 145 | # --- SORTED1074 --- |
| 146 | class TestSorted1074: |
| 147 | def test_tainted_silent_disabled(self): |
| 148 | # SORTED1074 disabled: sorting user data is not a security sink. |
| 149 | assert not_fires("data=request.GET.getlist('items'); sorted(data)", "SORTED1074") |
| 150 | def test_constant_safe(self): |
| 151 | assert not_fires("sorted([3,1,2])", "SORTED1074") |
| 152 | |
| 153 | # --- SUM1080 --- |
| 154 | class TestSum1080: |
nothing calls this directly
no outgoing calls
no test coverage detected