Class f.b.F.Data(object):

Part of fixture.base.Fixture View In Hierarchy

loads one or more DataSet objects and provides an interface into that data.
Method __init__ Undocumented
Method __enter__ enter a with statement block.
Method __exit__ exit a with statement block.
Method __getattr__ self.name is self.data.name
Method __getitem__ self['name'] is self.data['name']
Method setup load all datasets, populating self.data.
Method teardown unload all datasets.
def __init__(self, datasets, dataclass, loader):
Undocumented
def __enter__(self):
enter a with statement block.

calls self.setup()

def __exit__(self, type, value, traceback):
exit a with statement block.

calls self.teardown()

def __getattr__(self, name):
self.name is self.data.name
def __getitem__(self, name):
self['name'] is self.data['name']
def setup(self):
load all datasets, populating self.data.
def teardown(self):
unload all datasets.
API Documentation for fixture, generated by pydoctor.