/// Changes the contents of an existing file.
(&self, path: &str, body: &str)
| 69 | |
| 70 | // /// Changes the contents of an existing file. |
| 71 | pub fn change_file(&self, path: &str, body: &str) { |
| 72 | FileBuilder::new(self.root().join(path), body, false).mk() |
| 73 | } |
| 74 | |
| 75 | /// Returns the contents of a path in the project root |
| 76 | pub fn read_file(&self, path: &str) -> String { |
no test coverage detected