fix: Fix issues with nodejs and golang configuration (#146)

* fix: Give all modules a single name
* test: Add missing config tests for nodejs and golang
* test: Rename dir to directory
This commit is contained in:
Matan Kushner
2019-08-13 12:30:59 -04:00
committed by GitHub
parent 589b6cf712
commit 7424e9674c
7 changed files with 68 additions and 23 deletions
+22 -1
View File
@@ -2,7 +2,7 @@ use ansi_term::Color;
use std::fs::{self, File};
use std::io;
use crate::common;
use crate::common::{self, TestCommand};
#[test]
fn folder_without_go_files() -> io::Result<()> {
@@ -138,3 +138,24 @@ fn folder_with_gopkg_lock() -> io::Result<()> {
assert_eq!(expected, actual);
Ok(())
}
#[test]
#[ignore]
fn config_disabled() -> io::Result<()> {
let dir = common::new_tempdir()?;
File::create(dir.path().join("main.go"))?;
let output = common::render_module("golang")
.use_config(toml::toml! {
[golang]
disabled = true
})
.arg("--path")
.arg(dir.path())
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
let expected = "";
assert_eq!(expected, actual);
Ok(())
}