@@ -148,13 +148,11 @@ provider with two peculiarities:
148
148
Factory aggregate
149
149
-----------------
150
150
151
- :py:class: `FactoryAggregate ` provider aggregates multiple factories. When you call the
152
- ``FactoryAggregate `` it delegates the call to one of the factories.
151
+ :py:class: `FactoryAggregate ` provider aggregates multiple factories.
153
152
154
- The aggregated factories are associated with the string names. When you call the
155
- ``FactoryAggregate `` you have to provide one of the these names as a first argument.
156
- ``FactoryAggregate `` looks for the factory with a matching name and delegates it the work. The
157
- rest of the arguments are passed to the delegated ``Factory ``.
153
+ The aggregated factories are associated with the string keys. When you call the
154
+ ``FactoryAggregate `` you have to provide one of the these keys as a first argument.
155
+ ``FactoryAggregate `` looks for the factory with a matching key and calls it with the rest of the arguments.
158
156
159
157
.. image :: images/factory_aggregate.png
160
158
:width: 100%
@@ -165,17 +163,35 @@ rest of the arguments are passed to the delegated ``Factory``.
165
163
:lines: 3-
166
164
:emphasize-lines: 33-37,47
167
165
168
- You can get a dictionary of the aggregated factories using the ``.factories `` attribute of the
169
- `` FactoryAggregate ``. To get a game factories dictionary from the previous example you can use
166
+ You can get a dictionary of the aggregated factories using the ``.factories `` attribute.
167
+ To get a game factories dictionary from the previous example you can use
170
168
``game_factory.factories `` attribute.
171
169
172
170
You can also access an aggregated factory as an attribute. To create the ``Chess `` object from the
173
- previous example you can do ``chess = game_factory.chess(' John', ' Jane' ) ``.
171
+ previous example you can do ``chess = game_factory.chess(" John", " Jane" ) ``.
174
172
175
173
.. note ::
176
174
You can not override the ``FactoryAggregate `` provider.
177
175
178
176
.. note ::
179
177
When you inject the ``FactoryAggregate `` provider it is passed "as is".
180
178
179
+ To use non-string keys or keys with ``. `` and ``- `` you can provide a dictionary as a positional argument:
180
+
181
+ .. code-block :: python
182
+
183
+ providers.FactoryAggregate({
184
+ SomeClass: providers.Factory(... ),
185
+ " key.with.periods" : providers.Factory(... ),
186
+ " key-with-dashes" : providers.Factory(... ),
187
+ })
188
+
189
+ Example:
190
+
191
+ .. literalinclude :: ../../examples/providers/factory_aggregate_non_string_keys.py
192
+ :language: python
193
+ :lines: 3-
194
+ :emphasize-lines: 30-33,39-40
195
+
196
+
181
197
.. disqus ::
0 commit comments