_backup may be shared across instances. That should not raise errors.
(self)
| 104 | list(r.stream()) |
| 105 | |
| 106 | def test_copy(self): |
| 107 | """ |
| 108 | _backup may be shared across instances. That should not raise errors. |
| 109 | """ |
| 110 | f = tflow.tflow() |
| 111 | f.backup() |
| 112 | f.request.path = "/foo" |
| 113 | f2 = f.copy() |
| 114 | f2.revert() |
| 115 | f.revert() |
| 116 | |
| 117 | |
| 118 | class TestFlowMaster: |