(self, args, expected_format_options)
| 592 | ], |
| 593 | ) |
| 594 | def test_format_options_accumulation(self, args, expected_format_options): |
| 595 | parsed_args = parser.parse_args( |
| 596 | args=[*args, 'example.org'], |
| 597 | env=MockEnvironment(), |
| 598 | ) |
| 599 | assert parsed_args.format_options == expected_format_options |
| 600 | |
| 601 | |
| 602 | @responses.activate |
nothing calls this directly
no test coverage detected