(&self, url: &RepoUrl)
| 19 | |
| 20 | impl Fetch for Fetcher { |
| 21 | fn fetch(&self, url: &RepoUrl) -> Result<Response> { |
| 22 | Ok(Response { |
| 23 | url: url.to_owned(), |
| 24 | body: Html::parse_document(&self.0), |
| 25 | }) |
| 26 | } |
| 27 | } |
| 28 | |
| 29 | pub struct Fixtures { |
nothing calls this directly
no outgoing calls
no test coverage detected