Updating testImport docs
diff --git a/cfg/cfg.go b/cfg/cfg.go
index e9ed812..870bbe0 100644
--- a/cfg/cfg.go
+++ b/cfg/cfg.go
@@ -58,6 +58,6 @@
// when the type cannot be detected from the name. For example, a repo
// ending in .git or on GitHub can be detected to be Git. For a repo on
// Bitbucket we can contact the API to discover the type.
-// - devImport: A list of development packages. Each package has the same details
-// as those listed under import.
+// - testImport: A list of development packages not already listed under import.
+// Each package has the same details as those listed under import.
package cfg
diff --git a/cfg/config.go b/cfg/config.go
index 4b24fca..cdfd943 100644
--- a/cfg/config.go
+++ b/cfg/config.go
@@ -298,7 +298,7 @@
return nil
}
-// Has checks if a dependency is on a list of dependencies such as import or devimport
+// Has checks if a dependency is on a list of dependencies such as import or testImport
func (d Dependencies) Has(name string) bool {
for _, dep := range d {
if dep.Name == name {
diff --git a/cfg/config_test.go b/cfg/config_test.go
index 06ade6d..6313ff0 100644
--- a/cfg/config_test.go
+++ b/cfg/config_test.go
@@ -37,7 +37,7 @@
- package: github.com/Masterminds/cookoo/color
- package: github.com/Masterminds/cookoo/convert
-devimport:
+testImport:
- package: github.com/kylelemons/go-gypsy
`
diff --git a/docs/glide.yaml.md b/docs/glide.yaml.md
index 1b87990..7592321 100644
--- a/docs/glide.yaml.md
+++ b/docs/glide.yaml.md
@@ -25,6 +25,8 @@
- package: github.com/codegangsta/cli
- package: github.com/Masterminds/semver
version: ^1.0.0
+ testImport:
+ - package: github.com/arschles/assert
These elements are: