mirror of
https://github.com/valitydev/salt.git
synced 2024-11-08 01:18:58 +00:00
13 lines
310 B
Python
13 lines
310 B
Python
|
|
||
|
from pyroute2 import IPDB
|
||
|
from tests.support.unit import TestCase
|
||
|
from salt.beacons.network_settings import ATTRS
|
||
|
|
||
|
|
||
|
class Pyroute2TestCase(TestCase):
|
||
|
|
||
|
def test_interface_dict_fields(self):
|
||
|
with IPDB() as ipdb:
|
||
|
for attr in ATTRS:
|
||
|
self.assertIn(attr, ipdb.interfaces[1])
|