mirror of
https://github.com/Llewellynvdm/starship.git
synced 2024-11-05 12:57:50 +00:00
3c835ba34b
Environment names created via conda create -p [path] tend to be too long for comfort, so this truncates them.
44 lines
1.1 KiB
Rust
44 lines
1.1 KiB
Rust
use ansi_term::Color;
|
|
use std::io;
|
|
|
|
use crate::common;
|
|
|
|
#[test]
|
|
fn not_in_env() -> io::Result<()> {
|
|
let output = common::render_module("conda")
|
|
.env_clear()
|
|
.env("PATH", env!("PATH"))
|
|
.output()?;
|
|
|
|
let expected = "";
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
|
|
assert_eq!(expected, actual);
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn env_set() -> io::Result<()> {
|
|
let output = common::render_module("conda")
|
|
.env_clear()
|
|
.env("CONDA_DEFAULT_ENV", "astronauts")
|
|
.output()?;
|
|
|
|
let expected = format!("via {} ", Color::Green.bold().paint("C astronauts"));
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
|
|
assert_eq!(expected, actual);
|
|
Ok(())
|
|
}
|
|
|
|
#[test]
|
|
fn truncate() -> io::Result<()> {
|
|
let output = common::render_module("conda").env_clear().env("CONDA_DEFAULT_ENV", "/some/really/long/and/really/annoying/path/that/shouldnt/be/displayed/fully/conda/my_env").output()?;
|
|
|
|
let expected = format!("via {} ", Color::Green.bold().paint("C my_env"));
|
|
let actual = String::from_utf8(output.stdout).unwrap();
|
|
|
|
assert_eq!(expected, actual);
|
|
Ok(())
|
|
}
|