From eb3ec279becd3b81e5fa509244711548c86f434f Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Mon, 8 Jun 2020 23:33:06 -0700 Subject: [PATCH] Test for anonymous: true, refs #825 --- tests/test_utils.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_utils.py b/tests/test_utils.py index 975ed0fd..4bade18b 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -466,6 +466,7 @@ def test_multi_params(data, should_raise): [ ({"id": "root"}, None, True), ({"id": "root"}, {}, False), + ({"anonymous": True}, {"anonymous": True}, True), (None, None, True), (None, {}, False), (None, {"id": "root"}, False),