(self, client)
| 15 | return [onboarding.Onboarding()] |
| 16 | |
| 17 | def test_basic(self, client): |
| 18 | ob = onboarding.Onboarding() |
| 19 | with taddons.context(ob) as tctx: |
| 20 | tctx.configure(ob) |
| 21 | assert client.get("/").status_code == 200 |
| 22 | |
| 23 | @pytest.mark.parametrize("ext", ["pem", "p12", "cer", "magisk"]) |
| 24 | def test_cert(self, client, ext, tdata): |