Skip to content
Snippets Groups Projects
signal.py 263 B
Newer Older
  • Learn to ignore specific revisions
  • import pytest
    
    from b_asic import Signal
    
    
    @pytest.fixture
    def signal():
        """Return a signal with no connections."""
        return Signal()
    
    @pytest.fixture
    def signals():
        """Return 3 signals with no connections."""