tests.py 288 B

123456789101112
  1. from django.test import TestCase
  2. from .models import OAuthConfig
  3. # Create your tests here.
  4. class OAuthConfigTest(TestCase):
  5. def config_save_test(self):
  6. c = OAuthConfig()
  7. c.type = 'weibo'
  8. c.appkey = 'appkey'
  9. c.appsecret = 'appsecret'
  10. c.save()