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.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/test/test_flow.py b/test/test_flow.py
index 1394a668..1dd44dd2 100644
--- a/test/test_flow.py
+++ b/test/test_flow.py
@@ -192,6 +192,13 @@ class TestFlow:
f.revert()
assert f.request.content == "foo"
+ def test_backup_idempotence(self):
+ f = tutils.tflow_full()
+ f.backup()
+ f.revert()
+ f.backup()
+ f.revert()
+
def test_getset_state(self):
f = tutils.tflow()
f.response = tutils.tresp(f.request)