for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
from django.test import TestCase
from ore.models import Graph
from .common import fixt_unicode
class UnicodeTestCase(TestCase):
fixtures = fixt_unicode['files']
def testTikzSerialize(self):
g = Graph.objects.get(pk=fixt_unicode['pkFaultTree'])
assert (len(g.to_tikz()) > 0)