7 lines
112 B
Python
7 lines
112 B
Python
from django.test import TestCase
|
|
|
|
|
|
class TestRSAKey(TestCase):
|
|
def test_foobar(self):
|
|
assert 2 == 2
|