test: move test to internal/test

Fixes #521
This commit is contained in:
Dave Cheney 2017-05-10 14:24:12 +10:00
Родитель 1ecd91607e
Коммит 1d53807754
15 изменённых файлов: 12 добавлений и 12 удалений

Просмотреть файл

@ -8,7 +8,7 @@ import (
"path/filepath"
"testing"
"github.com/golang/dep/test"
"github.com/golang/dep/internal/test"
)
func TestAnalyzerDeriveManifestAndLock(t *testing.T) {

Просмотреть файл

@ -11,7 +11,7 @@ import (
"path/filepath"
"testing"
"github.com/golang/dep/test"
"github.com/golang/dep/internal/test"
)
// The TestMain function creates a dep command for testing purposes and

Просмотреть файл

@ -7,7 +7,7 @@ package main
import (
"testing"
"github.com/golang/dep/test"
"github.com/golang/dep/internal/test"
)
func TestEmptyProject(t *testing.T) {

Просмотреть файл

@ -14,7 +14,7 @@ import (
"testing"
"github.com/golang/dep"
"github.com/golang/dep/test"
"github.com/golang/dep/internal/test"
)
func TestIntegration(t *testing.T) {

Просмотреть файл

@ -8,7 +8,7 @@ import (
"os"
"testing"
"github.com/golang/dep/test"
"github.com/golang/dep/internal/test"
)
func TestRemoveErrors(t *testing.T) {

Просмотреть файл

@ -13,7 +13,7 @@ import (
"unicode"
"github.com/golang/dep/internal/gps"
"github.com/golang/dep/test"
"github.com/golang/dep/internal/test"
)
func TestNewContextNoGOPATH(t *testing.T) {

Просмотреть файл

@ -11,7 +11,7 @@ import (
"runtime"
"testing"
"github.com/golang/dep/test"
"github.com/golang/dep/internal/test"
)
func TestCopyDir(t *testing.T) {

Просмотреть файл

Просмотреть файл

Просмотреть файл

Просмотреть файл

@ -11,7 +11,7 @@ import (
"testing"
"github.com/golang/dep/internal/gps"
"github.com/golang/dep/test"
"github.com/golang/dep/internal/test"
)
func TestReadLock(t *testing.T) {

Просмотреть файл

@ -11,7 +11,7 @@ import (
"testing"
"github.com/golang/dep/internal/gps"
"github.com/golang/dep/test"
"github.com/golang/dep/internal/test"
)
func TestReadManifest(t *testing.T) {

Просмотреть файл

@ -11,7 +11,7 @@ import (
"testing"
"github.com/golang/dep/internal/gps"
"github.com/golang/dep/test"
"github.com/golang/dep/internal/test"
)
func TestFindRoot(t *testing.T) {

Просмотреть файл

@ -8,7 +8,7 @@ import (
"path/filepath"
"github.com/golang/dep/internal/gps"
"github.com/golang/dep/test"
"github.com/golang/dep/internal/test"
"github.com/pkg/errors"
)

Просмотреть файл

@ -11,7 +11,7 @@ import (
"strings"
"testing"
"github.com/golang/dep/test"
"github.com/golang/dep/internal/test"
"github.com/pkg/errors"
)