()
| 2909 | eq_(elements, exp) |
| 2910 | |
| 2911 | def all_none(): |
| 2912 | insp = inspect(connection) |
| 2913 | is_(insp.get_pk_constraint("foo")["comment"], None) |
| 2914 | check( |
| 2915 | insp.get_check_constraints("foo"), {"ch_1": None, "ch_2": None} |
| 2916 | ) |
| 2917 | check( |
| 2918 | insp.get_unique_constraints("foo"), |
| 2919 | {"un_1": None, "un_2": None}, |
| 2920 | ) |
| 2921 | check(insp.get_foreign_keys("foo"), {"fk_1": None, "fk_2": None}) |
| 2922 | |
| 2923 | all_none() |
| 2924 |
nothing calls this directly
no test coverage detected