(self)
| 2965 | ) |
| 2966 | |
| 2967 | def test_send_mass_mail(self): |
| 2968 | with self.assertDeprecatedIn70( |
| 2969 | "'fail_silently', 'auth_user', 'auth_password', 'connection'", |
| 2970 | "send_mass_mail", |
| 2971 | ): |
| 2972 | send_mass_mail( |
| 2973 | [], |
| 2974 | # Deprecated positional args: |
| 2975 | None, |
| 2976 | None, |
| 2977 | None, |
| 2978 | self.get_connection(), |
| 2979 | ) |
| 2980 | |
| 2981 | def test_mail_admins(self): |
| 2982 | with self.assertDeprecatedIn70( |
nothing calls this directly
no test coverage detected