Example #1
0
 def test_orm_with_defs(self):
     orm = ORM(self.orm_defs)
     orm.configure_with_engine(self.engine)
     self.exercise_orm(orm)
Example #2
0
 def test_orm(self):
     orm = ORM()
     orm.create_mapped_classes(self.orm_defs)
     orm.configure_with_engine(self.engine)
     self.exercise_orm(orm)