summaryrefslogtreecommitdiffstats
path: root/tests/testsuite/ruby.rs
diff options
context:
space:
mode:
authorKevin Song <chipbuster@users.noreply.github.com>2019-08-14 18:50:25 -0700
committerMatan Kushner <hello@matchai.me>2019-08-14 21:50:25 -0400
commite250e710197091a5767d80e1c82cd782078f9310 (patch)
tree64bcf4ff25e4035ea97199121208d60a86ba6d82 /tests/testsuite/ruby.rs
parent717ee3339e97f02bb8cc5cfc43bd51b8d575b52f (diff)
fix: Don't run tests for ruby outside of the integration tests (#155)
Diffstat (limited to 'tests/testsuite/ruby.rs')
-rw-r--r--tests/testsuite/ruby.rs2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/testsuite/ruby.rs b/tests/testsuite/ruby.rs
index f8a4356a1..f1911f6b4 100644
--- a/tests/testsuite/ruby.rs
+++ b/tests/testsuite/ruby.rs
@@ -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"))?;