Skip to content
Snippets Groups Projects
signal.py 165 B
Newer Older
  • Learn to ignore specific revisions
  • Kevin Scott's avatar
    Kevin Scott committed
    from b_asic import Signal
    
    
    @pytest.fixture
    def signal():
    
    Kevin Scott's avatar
    Kevin Scott committed
        return Signal()
    
    
    @pytest.fixture
    def signals():
    
    Kevin Scott's avatar
    Kevin Scott committed
        return [Signal() for _ in range(0,3)]