Skip to content
Snippets Groups Projects
tests.py 252 B
Newer Older
  • Learn to ignore specific revisions
  • from unittest import TestCase
    
    Todd Dembrey's avatar
    Todd Dembrey committed
    
    
    from .workflow import Workflow
    
    
    class TestWorkflowCreation(TestCase):
        def test_can_create_workflow(self):
            name = 'single_stage'
            workflow = Workflow(name)
            self.assertEqual(workflow.name, name)