mirror of
https://github.com/FRRouting/frr.git
synced 2025-04-30 13:37:17 +02:00
14 lines
315 B
Python
14 lines
315 B
Python
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()
|