16 lines
255 B
Python
16 lines
255 B
Python
|
from django.test import TestCase
|
||
|
|
||
|
from .federation import *
|
||
|
|
||
|
# Create your tests here.
|
||
|
class BaseTest(TestCase):
|
||
|
|
||
|
def setUp(self):
|
||
|
super().setUp()
|
||
|
|
||
|
def tearDown(self):
|
||
|
super().tearDown()
|
||
|
|
||
|
def test_harness(self):
|
||
|
return
|