diff options
| author | Quentin Young <qlyoung@users.noreply.github.com> | 2021-07-05 04:13:20 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-07-05 04:13:20 +0000 |
| commit | 71bae95e4aa78a5f269d7d26171911169e0810b1 (patch) | |
| tree | 36a3633d7eddd2d549366a5f8883d7868bacea8a /tests/lib/test_frrscript.py | |
| parent | b09ca18c3f453356d7bd381701341f67000845b0 (diff) | |
| parent | cd3c3a98e279326a0fc69a0f0d7620abdf8b404f (diff) | |
Merge pull request #8888 from dlqs/lua-call
Diffstat (limited to 'tests/lib/test_frrscript.py')
| -rw-r--r-- | tests/lib/test_frrscript.py | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/tests/lib/test_frrscript.py b/tests/lib/test_frrscript.py new file mode 100644 index 0000000000..046d97b014 --- /dev/null +++ b/tests/lib/test_frrscript.py @@ -0,0 +1,14 @@ +import frrtest +import pytest + +if 'S["SCRIPTING_TRUE"]=""\n' not in open("../config.status").readlines(): + class TestFrrscript: + @pytest.mark.skipif(True, reason="Test unsupported") + def test_exit_cleanly(self): + pass +else: + + class TestFrrscript(frrtest.TestMultiOut): + program = "./test_frrscript" + + TestFrrscript.exit_cleanly() |
