Total Complexity | 1 |
Total Lines | 13 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | from django.test import TestCase |
||
2 | |||
3 | from ore.models import Graph |
||
4 | from .common import fixt_unicode |
||
5 | |||
6 | |||
7 | class UnicodeTestCase(TestCase): |
||
8 | fixtures = fixt_unicode['files'] |
||
9 | |||
10 | def testTikzSerialize(self): |
||
11 | g = Graph.objects.get(pk=fixt_unicode['pkFaultTree']) |
||
12 | assert (len(g.to_tikz()) > 0) |
||
13 |