()
| 2928 | eq_(elements, exp) |
| 2929 | |
| 2930 | def all_none(): |
| 2931 | insp = inspect(connection) |
| 2932 | is_(insp.get_pk_constraint("foo")["comment"], None) |
| 2933 | check( |
| 2934 | insp.get_check_constraints("foo"), {"ch_1": None, "ch_2": None} |
| 2935 | ) |
| 2936 | check( |
| 2937 | insp.get_unique_constraints("foo"), |
| 2938 | {"un_1": None, "un_2": None}, |
| 2939 | ) |
| 2940 | check(insp.get_foreign_keys("foo"), {"fk_1": None, "fk_2": None}) |
| 2941 | |
| 2942 | all_none() |
| 2943 |
nothing calls this directly
no test coverage detected