mirror of
https://github.com/ansible/awx.git
synced 2026-03-13 23:17:32 -02:30
16 lines
269 B
Python
16 lines
269 B
Python
|
|
|
|
from awx.network_ui.models import Device, Topology, Interface
|
|
|
|
|
|
def test_device():
|
|
assert str(Device(name="foo")) == "foo"
|
|
|
|
|
|
def test_topology():
|
|
assert str(Topology(name="foo")) == "foo"
|
|
|
|
|
|
def test_interface():
|
|
assert str(Interface(name="foo")) == "foo"
|