()
| 822 | |
| 823 | |
| 824 | def test_m2m(): |
| 825 | with pytest.raises( |
| 826 | ConfigurationError, |
| 827 | match="You can't set m2m relations through init, use m2m_manager instead", |
| 828 | ): |
| 829 | Event(name="a", participants=[]) |
| 830 | |
| 831 | |
| 832 | def test_rev_m2m(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…