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.
22 lines
491 B
22 lines
491 B
from django.test import TestCase
|
|
|
|
from core.tests import BehaviourTestCaseMixin
|
|
|
|
from .models import Request
|
|
|
|
|
|
# Create your tests here.
|
|
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
|
|
|