From a984bc21cc288506d3ad6361d7d54ba1a20cbbd1 Mon Sep 17 00:00:00 2001 From: Andrew Brookins Date: Wed, 1 Sep 2021 13:12:04 -0700 Subject: [PATCH] Tidy up TODO comments on filter/get API --- tests/test_json_model.py | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/test_json_model.py b/tests/test_json_model.py index 5fff61f..b09e1aa 100644 --- a/tests/test_json_model.py +++ b/tests/test_json_model.py @@ -203,6 +203,7 @@ def test_updates_a_model(): @pytest.mark.skip("Not implemented yet") def test_exact_match_queries(): + # TODO: Should get() support expressions? I.e., ... # What if the field wasn't unique and there were two "a@example.com" # entries? This would raise a MultipleObjectsReturned error: member = Member.get(Member.email == "a.m.brookins@gmail.com")