Add a basic test for the creatersakey management command

This commit is contained in:
Pablo SEMINARIO 2015-10-17 22:58:34 +02:00
parent aa51ab36ad
commit 36f8bcbb5d

View file

@ -0,0 +1,11 @@
from django.core.management import call_command
from django.test import TestCase, override_settings
from django.utils.six import StringIO
class CreateRSAKeyTest(TestCase):
@override_settings(BASE_DIR='/tmp')
def test_command_output(self):
out = StringIO()
call_command('creatersakey', stdout=out)
self.assertIn('RSA key successfully created', out.getvalue())