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.py12
1 files changed, 12 insertions, 0 deletions
diff --git a/test/test_flow.py b/test/test_flow.py
index 6ad78ab1..b6818960 100644
--- a/test/test_flow.py
+++ b/test/test_flow.py
@@ -134,6 +134,18 @@ class uServerPlaybackState(libpry.AutoTree):
assert not s.next_flow(r)
+ def test_load_with_nopop(self):
+ r = tutils.tflow_full()
+ r.request.headers["key"] = ["one"]
+
+ r2 = tutils.tflow_full()
+ r2.request.headers["key"] = ["two"]
+
+ s = flow.ServerPlaybackState(None, [r, r2], False, True)
+
+ assert s.count() == 2
+ n = s.next_flow(r)
+ assert s.count() == 2
class uFlow(libpry.AutoTree):
def test_copy(self):