blob: cf99077c3566f45a1718d5cee1add8d3d59f5801 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import frrtest
import pytest
import os
class TestCommands(frrtest.TestRefOut):
program = "./test_commands"
@pytest.mark.skipif(
"QUAGGA_TEST_COMMANDS" not in os.environ, reason="QUAGGA_TEST_COMMANDS not set"
)
def test_refout(self):
return super(TestCommands, self).test_refout()
|