()
| 110 | |
| 111 | |
| 112 | def test_variable_assignment_propagation(): |
| 113 | src = """ |
| 114 | x = c() |
| 115 | y = x |
| 116 | """ |
| 117 | p = "c()" |
| 118 | node = process_taint(src, p) |
| 119 | assert node.var_name == "y" |
| 120 | assert node._taint_class == Taints.TAINTED |
| 121 | |
| 122 | |
| 123 | def test_attribute_propagation(): |
nothing calls this directly
no test coverage detected