No Description
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.

test_component.py 284B

12345678910
  1. #from django.test import TestCase
  2. from unittest import TestCase
  3. from EditorialModel.component import EmComponent
  4. class ComponentTestCase(TestCase):
  5. def test_component_instanciate_with_numeric_id(self):
  6. testComp = EmComponent(2)
  7. self.assertEqual(testComp.id, 2)