Start on a randomized integration test

This commit is contained in:
Antonio Scandurra 2022-02-15 17:33:43 +01:00
parent c33d554675
commit a11495af19
4 changed files with 309 additions and 1 deletions

View file

@ -1354,7 +1354,9 @@ impl language::File for File {
fn full_path(&self, cx: &AppContext) -> PathBuf {
let mut full_path = PathBuf::new();
full_path.push(self.worktree.read(cx).root_name());
full_path.push(&self.path);
if self.path.components().next().is_some() {
full_path.push(&self.path);
}
full_path
}