#  Copyright © 2023 Ingram Micro Inc. All rights reserved.

import pytest

from dj_cqrs.transport.base import BaseTransport


def test_base_transport_consume():
    with pytest.raises(NotImplementedError):
        BaseTransport.consume(None)


def test_base_transport_produce():
    with pytest.raises(NotImplementedError):
        BaseTransport.produce(None)