| 260 | """Test process when rewrite returns None.""" |
| 261 | |
| 262 | class NoChangeRewriter(Rewriter): |
| 263 | def rewrite(self, item, qa_idx): |
| 264 | return None |
| 265 | |
| 266 | r = NoChangeRewriter() |
| 267 | result = r.process(data_item) |
nothing calls this directly
no outgoing calls
no test coverage detected