Advertisement
Guest User

Untitled

a guest
Jan 23rd, 2017
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.30 KB | None | 0 0
  1. from django.test import TestCase
  2.  
  3. from main_app.register import CatalogItem
  4. from main_app.exceptions import *
  5.  
  6.  
  7. class TestModulesCase(TestCase):
  8.     """Modules test"""
  9.  
  10.     def __init__(self, *args, **kwargs):
  11.         super().__init__(*args, **kwargs)
  12.  
  13.         self.loaded = CatalogItem.REGISTRY
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement