(cookiejar_examples)
| 8 | |
| 9 | @pytest.fixture |
| 10 | def installed_cookiejar(cookiejar_examples): |
| 11 | path = str(cookiejar_examples.project_path) |
| 12 | |
| 13 | subprocess.call(["git", "init", path]) |
| 14 | subprocess.call(["pip", "install", path]) |
| 15 | |
| 16 | yield cookiejar_examples |
| 17 | |
| 18 | subprocess.call(["pip", "uninstall", "-y", "packagename"]) |
| 19 | |
| 20 | |
| 21 | def test_examples_present(installed_cookiejar): |
nothing calls this directly
no outgoing calls
no test coverage detected