def setUp(self):
shp = os.path.join(os.path.dirname(__file__), '../data/campus.shp')
self.geoms = []
with fiona.open(shp) as source:
for r in source:
s = shape(r['geometry'])
self.geoms.append(s)