1
0
mirror of https://github.com/Llewellynvdm/starship.git synced 2024-05-30 23:20:52 +00:00

fix: Don't run tests for ruby outside of the integration tests (#155)

This commit is contained in:
Kevin Song 2019-08-14 18:50:25 -07:00 committed by Matan Kushner
parent 717ee3339e
commit e250e71019

View File

@ -20,6 +20,7 @@ fn folder_without_ruby_files() -> io::Result<()> {
}
#[test]
#[ignore]
fn folder_with_gemfile() -> io::Result<()> {
let dir = common::new_tempdir()?;
File::create(dir.path().join("Gemfile"))?;
@ -36,6 +37,7 @@ fn folder_with_gemfile() -> io::Result<()> {
}
#[test]
#[ignore]
fn folder_with_rb_file() -> io::Result<()> {
let dir = common::new_tempdir()?;
File::create(dir.path().join("any.rb"))?;