Reorganize tests literals and move then to their respective apps.

This commit is contained in:
Roberto Rosario
2015-10-20 21:14:07 -04:00
parent 2bd92d8fac
commit df7a5c6e1c
29 changed files with 123 additions and 93 deletions

View File

@@ -7,10 +7,7 @@ from django.test import TestCase
from ..api import GPG, Key
from ..settings import setting_gpg_path
TEST_GPG_HOME = '/tmp/test_gpg_home'
TEST_KEY_ID = '607138F1AECC5A5CA31CB7715F3F7F75D210724D'
TEST_KEYSERVERS = ['pool.sks-keyservers.net']
TEST_UIDS = 'Roberto Rosario'
from .literals import TEST_GPG_HOME, TEST_KEY_ID, TEST_KEYSERVERS, TEST_UIDS
class DjangoGPGTestCase(TestCase):