diff options
Diffstat (limited to 'tests/lib/cli/test_commands.py')
-rw-r--r-- | tests/lib/cli/test_commands.py | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/lib/cli/test_commands.py b/tests/lib/cli/test_commands.py new file mode 100644 index 0000000..cf99077 --- /dev/null +++ b/tests/lib/cli/test_commands.py @@ -0,0 +1,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() |