Index of the fixtures module
-
m
testtools.fixtures.fixtures
...
-
C
affix
...
- returns a collection of Fixture instances, all attributes shared.
- C RequiredPool ... - encapsulates other fixtures required by a Fixture.
-
C
meta
...
- namespace for Fixture properties.
- C Values ... - encapsulates a Fixture's values (dataset).
- f load ...
- f add_fixture ... - merges attributes from another fixture into self.
- f assert_has ... - assert this fixture has a dataset somewhere in it.
- f clean ...
- f close ...
- f items ... - yields (fixture_key, fixture) in self.
- f data ... - hook for subclasses to return a data definition.
- f __len__ ...
-
C
Fixture
...
- Encapsulates one or more datasets to be loaded into a storage medium.
- f load ... - load all data using stor_obj.save().
- f add_fixture ... - merges attributes from another fixture into self.
- f assert_has ... - assert this fixture has a dataset somewhere in it.
- f __init__ ... - see Fixture for signature.
- f clean ... - perform clean() on all storage objects loaded for this instance only.
- f close ...
- f items ... - yields (fixture_key, fixture) in self.
- f data ... - hook for subclasses to return a data definition.
- f __len__ ...
- f with_fixtures ... - decorator that attaches fixtures to a test def.
- f metamethod ... - makes a method Fixture.meta -compatible
-
C
affix
...
- returns a collection of Fixture instances, all attributes shared.