diff options
| author | Pat Ruddy <pat@voltanet.io> | 2021-01-05 17:18:39 +0000 |
|---|---|---|
| committer | Pat Ruddy <pat@voltanet.io> | 2021-01-05 18:20:50 +0000 |
| commit | cdb2af427ab93cd45f21a6fc55fc19e52d83bc1d (patch) | |
| tree | 9048480a62d1cb8d069cd4c05b2c4d24017cac02 /tests/zebra/test_lm_plugin.py | |
| parent | 507d2737d685bb1e94ec8682a020c7aaae131421 (diff) | |
tests: add test for labelmanager plugin
An external label manager plugin may want to use the following
functions:
- create_label_chunk
- assign_label_chunk
- delete_label_chunk
- release_label_chunk
This test ensures that they are externally visible.
Signed-off-by: Pat Ruddy <pat@voltanet.io>
Diffstat (limited to 'tests/zebra/test_lm_plugin.py')
| -rw-r--r-- | tests/zebra/test_lm_plugin.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/zebra/test_lm_plugin.py b/tests/zebra/test_lm_plugin.py new file mode 100644 index 0000000000..bf4f3cef91 --- /dev/null +++ b/tests/zebra/test_lm_plugin.py @@ -0,0 +1,5 @@ +import frrtest + + +class TestLmplugin(frrtest.TestRefOut): + program = "./test_lm_plugin" |
