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.
 
 
 
 
 
 

12 lines
370 B

import unittest
from ..pipeline.catalog import Options
from projects.models import ProjectType
class TestOptions(unittest.TestCase):
def test_return_at_least_one_option(self):
for task in ProjectType:
with self.subTest(task=task):
options = Options.filter_by_task(task)
self.assertGreaterEqual(len(options), 1)