summaryrefslogtreecommitdiffstats
path: root/tests/testsuite/common.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testsuite/common.rs')
-rw-r--r--tests/testsuite/common.rs22
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/testsuite/common.rs b/tests/testsuite/common.rs
new file mode 100644
index 000000000..451880288
--- /dev/null
+++ b/tests/testsuite/common.rs
@@ -0,0 +1,22 @@
+use std::{io, process};
+
+pub fn render_prompt() -> process::Command {
+ let mut command = process::Command::new("./target/debug/starship");
+ command.arg("prompt");
+
+ command
+}
+
+pub fn render_module(module_name: &str) -> process::Command {
+ let mut command = process::Command::new("./target/debug/starship");
+ command.arg("module").arg(module_name);
+
+ command
+}
+
+/// Create a temporary directory with full access permissions (rwxrwxrwt).
+pub fn new_tempdir() -> io::Result<tempfile::TempDir> {
+ // Using `tempfile::TempDir` directly creates files on macOS within
+ // "/var/folders", which provides us with restricted permissions (rwxr-xr-x)
+ tempfile::tempdir_in("/tmp")
+}