summaryrefslogtreecommitdiffstats
path: root/tests/lib/test_zmq.py
blob: 5f6189d919d9f3105509f2b0c96336f3b0df193e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
import frrtest
import pytest
import os


class TestZMQ(frrtest.TestRefOut):
    program = "./test_zmq"

    @pytest.mark.skipif(
        'S["ZEROMQ_TRUE"]=""\n' not in open("../config.status").readlines(),
        reason="ZEROMQ not enabled",
    )
    def test_refout(self):
        return super(TestZMQ, self).test_refout()