(capsys)
| 752 | |
| 753 | |
| 754 | def test_show_config(capsys): |
| 755 | cfg = Config() |
| 756 | cfg.MyApp.i = 5 |
| 757 | # don't show empty |
| 758 | cfg.OtherApp |
| 759 | |
| 760 | app = MyApp(config=cfg, show_config=True) |
| 761 | app.start() |
| 762 | out, err = capsys.readouterr() |
| 763 | assert "MyApp" in out |
| 764 | assert "i = 5" in out |
| 765 | assert "OtherApp" not in out |
| 766 | |
| 767 | |
| 768 | def test_show_config_json(capsys): |