(self)
| 117 | assert "hello" in stream.getvalue() |
| 118 | |
| 119 | def test_no_eval_cli_text(self): |
| 120 | app = MyApp() |
| 121 | app.initialize(["--Foo.name=1"]) |
| 122 | app.init_foo() |
| 123 | assert app.foo.name == "1" |
| 124 | |
| 125 | def test_basic(self): |
| 126 | app = MyApp() |
nothing calls this directly
no test coverage detected