Files
awx/awx/network_ui/tests.py
2018-03-23 17:00:18 -04:00

17 lines
429 B
Python

# Copyright (c) 2017 Red Hat, Inc
from django.test import TestCase
# Create your tests here.
from awx.network_ui.models import Topology, Device, Interface, MessageType, Link
class TestToString(TestCase):
def test(self):
print str(Topology(name='foo'))
print str(Device(name='foo'))
print str(Device(name='foo'))
print str(Interface(name='foo'))
print str(MessageType(name='foo'))