Example #1
0
 def test_get_table_with_label(self):
     dot = SQLSchema('My UML model')
     table = dot.add_label('My table')
     assert dot.get_table('My table') == table
Example #2
0
 def test_get_table_with_label(self):
     dot = SQLSchema('My UML model')
     table = dot.add_label('My table')
     self.assertEqual(dot.get_table('My table'), table)
Example #3
0
 def test_get_table_with_label(self):
     dot = SQLSchema('My UML model')
     table = dot.add_label('My table')
     self.assertEqual(dot.get_table('My table'), table)