0001# Copyright (C) 2006 Kumar McMillan
0002
0003# This library is free software; you can redistribute it and/or
0004# modify it under the terms of the GNU Lesser General Public
0005# License as published by the Free Software Foundation; either
0006# version 2.1 of the License, or (at your option) any later version.
0007
0008"""Provides tools to load and inspect test data.
0009
0010See class/ function docs for examples of usage.  The `Fixture` class has most of the examples.
0011
0012"""
0013
0014__all__ = [ 'Fixture', 'CsvFixture', 'SOFixture', 'affix', 'FixtureCollection',
0015            'find_so_from_data', 'find_so_from_table', 'find_so_from_fixture', 'unload_fixtures']
0016
0017from fixtures import *
0018from storable import *
0019from registry import unload_fixtures