(interface)
| 188 | |
| 189 | @pytest.fixture(scope='function') |
| 190 | def dummy_plugins(interface): |
| 191 | # Multiple plugins with different configurations |
| 192 | return [ |
| 193 | interface.make_dummy_plugin(), |
| 194 | interface.make_dummy_plugin( |
| 195 | version='3.2.0' |
| 196 | ), |
| 197 | interface.make_dummy_plugin( |
| 198 | entry_points=[ |
| 199 | EntryPoint('test_1', 'httpie.plugins.converter.v1'), |
| 200 | EntryPoint('test_2', 'httpie.plugins.formatter.v1') |
| 201 | ] |
| 202 | ), |
| 203 | ] |
| 204 | |
| 205 | |
| 206 | @pytest.fixture |
nothing calls this directly
no test coverage detected