Skip to content

Commit

Permalink
feat(Edit): The edit subcommand
Browse files Browse the repository at this point in the history
Creates easy access for editing project files.

Closes #6
  • Loading branch information
brianp committed Dec 11, 2019
1 parent 9e03780 commit 43ebe60
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 57 deletions.
56 changes: 0 additions & 56 deletions edit/tests/edit.rs

This file was deleted.

1 change: 1 addition & 0 deletions load/tests/helpers/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ fn open_muxed(project: &str, project_root: &Path) -> Result<(), String> {
flag_p: Some(format!("{}", project_root.display())),
flag_t: None,
arg_project: project.to_string(),
cmd_edit: false,
cmd_new: false,
cmd_snapshot: false,
};
Expand Down
3 changes: 2 additions & 1 deletion new/tests/new.rs
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ mod test {
flag_p: Some(format!("{}", project_root.display())),
flag_t: None,
arg_project: project.to_string(),
cmd_new: false,
cmd_edit: false,
cmd_new: true,
cmd_snapshot: false,
};

Expand Down

0 comments on commit 43ebe60

Please sign in to comment.