16 lines
470 B
Python
16 lines
470 B
Python
|
"""
|
||
|
TestUsageCatalog
|
||
|
SPDX - License - Identifier: LGPL - 3.0 - or -later
|
||
|
Copyright © 2022 Concordia CERC group
|
||
|
Project Coder Guille Gutierrez guillermo.gutierrezmorote@concordia.ca
|
||
|
"""
|
||
|
|
||
|
from unittest import TestCase
|
||
|
from catalog_factories.usage_catalog_factory import UsageCatalogFactory
|
||
|
|
||
|
|
||
|
class TestConstructionCatalog(TestCase):
|
||
|
def test_comnet_catalog(self):
|
||
|
catalog = UsageCatalogFactory('comnet').catalog
|
||
|
self.assertIsNotNone(catalog, 'catalog is none')
|