Skip to content
This repository was archived by the owner on Sep 9, 2020. It is now read-only.

Commit 8b00de0

Browse files
authored
Merge pull request #541 from davecheney/fixedbugs/521
test: move test to internal/test
2 parents 1ecd916 + 528e91e commit 8b00de0

16 files changed

+13
-13
lines changed

analyzer_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"path/filepath"
99
"testing"
1010

11-
"github.com/golang/dep/test"
11+
"github.com/golang/dep/internal/test"
1212
)
1313

1414
func TestAnalyzerDeriveManifestAndLock(t *testing.T) {

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@ deploy: false
3434

3535
test_script:
3636
- go build github.com/golang/dep/cmd/dep
37-
- for /f "" %%G in ('go list github.com/golang/dep/... ^| find /i /v "/vendor/"') do @go test %%G
37+
- for /f "" %%G in ('go list github.com/golang/dep/... ^| find /i /v "/vendor/"') do @go test %%G

cmd/dep/dep_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"path/filepath"
1212
"testing"
1313

14-
"github.com/golang/dep/test"
14+
"github.com/golang/dep/internal/test"
1515
)
1616

1717
// The TestMain function creates a dep command for testing purposes and

cmd/dep/graphviz_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ package main
77
import (
88
"testing"
99

10-
"github.com/golang/dep/test"
10+
"github.com/golang/dep/internal/test"
1111
)
1212

1313
func TestEmptyProject(t *testing.T) {

cmd/dep/integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import (
1414
"testing"
1515

1616
"github.com/golang/dep"
17-
"github.com/golang/dep/test"
17+
"github.com/golang/dep/internal/test"
1818
)
1919

2020
func TestIntegration(t *testing.T) {

cmd/dep/remove_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"os"
99
"testing"
1010

11-
"github.com/golang/dep/test"
11+
"github.com/golang/dep/internal/test"
1212
)
1313

1414
func TestRemoveErrors(t *testing.T) {

context_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313
"unicode"
1414

1515
"github.com/golang/dep/internal/gps"
16-
"github.com/golang/dep/test"
16+
"github.com/golang/dep/internal/test"
1717
)
1818

1919
func TestNewContextNoGOPATH(t *testing.T) {

fs_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import (
1111
"runtime"
1212
"testing"
1313

14-
"github.com/golang/dep/test"
14+
"github.com/golang/dep/internal/test"
1515
)
1616

1717
func TestCopyDir(t *testing.T) {
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)