aboutsummaryrefslogtreecommitdiffstats
path: root/test/test_flow.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/test_flow.py')
-rw-r--r--test/test_flow.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/test_flow.py b/test/test_flow.py
index 9629934f..b71ce6af 100644
--- a/test/test_flow.py
+++ b/test/test_flow.py
@@ -32,10 +32,15 @@ class uFlow(libpry.AutoTree):
def test_backup(self):
f = utils.tflow()
+ f.response = utils.tresp()
+ f.request = f.response.request
+ f.request.content = "foo"
assert not f.modified()
f.backup()
+ f.request.content = "bar"
assert f.modified()
f.revert()
+ assert f.request.content == "foo"
def test_getset_state(self):
f = utils.tflow()