()
| 746 | |
| 747 | |
| 748 | def test_show_config_json_cli(): |
| 749 | out, err, ec = get_output_error_code([sys.executable, "-m", __name__, "--show-config-json"]) |
| 750 | assert ec == 0 |
| 751 | assert "show_config" not in out |
| 752 | |
| 753 | |
| 754 | def test_show_config(capsys): |
nothing calls this directly
no test coverage detected
searching dependent graphs…