2017-02-03 16:58:58 +01:00
|
|
|
import frrtest
|
|
|
|
import pytest
|
|
|
|
import os
|
|
|
|
|
2020-10-07 23:22:26 +02:00
|
|
|
|
2017-02-03 16:58:58 +01:00
|
|
|
class TestCommands(frrtest.TestRefOut):
|
2020-10-07 23:22:26 +02:00
|
|
|
program = "./test_commands"
|
2017-07-11 14:53:31 +02:00
|
|
|
|
2020-10-07 23:22:26 +02:00
|
|
|
@pytest.mark.skipif(
|
|
|
|
"QUAGGA_TEST_COMMANDS" not in os.environ, reason="QUAGGA_TEST_COMMANDS not set"
|
|
|
|
)
|
2017-07-11 14:53:31 +02:00
|
|
|
def test_refout(self):
|
2017-08-28 17:20:38 +02:00
|
|
|
return super(TestCommands, self).test_refout()
|