Test for anonymous: true, refs #825

This commit is contained in:
Simon Willison 2020-06-08 23:33:06 -07:00 committed by GitHub
commit eb3ec279be
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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),