1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-09-19 09:29:02 +00:00
starship/tests/testsuite/php.rs
2019-12-05 13:04:27 -05:00

57 lines
1.3 KiB
Rust

use std::fs::File;
use std::io;
use ansi_term::Color;
use crate::common;
use crate::common::TestCommand;
#[test]
fn folder_without_php_files() -> io::Result<()> {
let dir = common::new_tempdir()?;
let output = common::render_module("php")
.arg("--path")
.arg(dir.path())
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
let expected = "";
assert_eq!(expected, actual);
Ok(())
}
#[test]
#[ignore]
fn folder_with_composer_file() -> io::Result<()> {
let dir = common::new_tempdir()?;
File::create(dir.path().join("composer.json"))?;
let output = common::render_module("php")
.arg("--path")
.arg(dir.path())
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
let expected = format!("via {} ", Color::Red.bold().paint("🐘 v7.3.8"));
assert_eq!(expected, actual);
Ok(())
}
#[test]
#[ignore]
fn folder_with_php_file() -> io::Result<()> {
let dir = common::new_tempdir()?;
File::create(dir.path().join("any.php"))?;
let output = common::render_module("php")
.arg("--path")
.arg(dir.path())
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
let expected = format!("via {} ", Color::Red.bold().paint("🐘 v7.3.8"));
assert_eq!(expected, actual);
Ok(())
}