You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910 |
- #from django.test import TestCase
- from unittest import TestCase
- from EditorialModel.component import EmComponent
-
- class ComponentTestCase(TestCase):
-
- def test_component_instanciate_with_numeric_id(self):
- testComp = EmComponent(2)
- self.assertEqual(testComp.id, 2)
|