blob: 1f8ee541695ba8584e60f0a081e3341cf15b4bfc (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
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()
|