You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
465 B
21 lines
465 B
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
|
|
|