from django.test import TestCase from core.tests import BehaviourTestCaseMixin from .models import Request class SendRequestWithTestCase(BehaviourTestCaseMixin, TestCase): model = Request def create_instance(self, **kwargs): return self.get_model() def send_form_without_attachments_by_db_mailer(self): pass def send_form_with_attachments_by_db_mailer(self): pass def save_attachments_locally(self): pass