diff --git a/tests/test_plot/test_misc.py b/tests/test_plot/test_misc.py index 24a98c64..f5bc844d 100644 --- a/tests/test_plot/test_misc.py +++ b/tests/test_plot/test_misc.py @@ -388,7 +388,7 @@ def test_help_output_plugin_4(test_dir, monkeypatch): ctx.clean_up() -def test_help_outputs(test_dir): +def test_help_outputs_md(test_dir): ctx = context.TestContext(test_dir, '3Rs', 'pre_and_position') ctx.run(extra=['--help-outputs'], no_verbose=True, no_out_dir=True, no_yaml_file=True, no_board_file=True) assert ctx.search_out('Gerber format') @@ -396,6 +396,14 @@ def test_help_outputs(test_dir): ctx.clean_up() +def test_help_outputs_rst(test_dir): + ctx = context.TestContext(test_dir, '3Rs', 'pre_and_position') + ctx.run(extra=['--help-outputs', '--rst'], no_verbose=True, no_out_dir=True, no_yaml_file=True, no_board_file=True) + assert ctx.search_out('Gerber format') + assert ctx.search_out('Type: .?.?gerber.?.?') + ctx.clean_up() + + def test_help_preflights(test_dir): ctx = context.TestContext(test_dir, '3Rs', 'pre_and_position') ctx.run(extra=['--help-preflights'], no_verbose=True, no_out_dir=True, no_yaml_file=True, no_board_file=True)