move testing to common

This commit is contained in:
Helmut Merz 2023-07-21 09:32:11 +02:00
parent a64f621997
commit e35e7796ac
6 changed files with 5 additions and 5 deletions

View file

@ -4,8 +4,8 @@ import (
tbase "testing"
"git.sr.ht/~cco/go-scopes/common/stack"
"git.sr.ht/~cco/go-scopes/common/testing"
"git.sr.ht/~cco/go-scopes/common/voc"
"git.sr.ht/~cco/go-scopes/testing"
)
func TestCommon(tb *tbase.T) {

View file

@ -3,13 +3,13 @@ package etc
import (
"git.sr.ht/~cco/go-scopes/app"
"git.sr.ht/~cco/go-scopes/client"
"git.sr.ht/~cco/go-scopes/common/testing"
"git.sr.ht/~cco/go-scopes/config"
"git.sr.ht/~cco/go-scopes/lib"
"git.sr.ht/~cco/go-scopes/lib/action"
"git.sr.ht/~cco/go-scopes/lib/core"
"git.sr.ht/~cco/go-scopes/logging"
"git.sr.ht/~cco/go-scopes/server"
"git.sr.ht/~cco/go-scopes/testing"
)
func Config() lib.Config {

View file

@ -5,7 +5,7 @@ import (
tbase "testing"
"git.sr.ht/~cco/go-scopes/common/funky"
"git.sr.ht/~cco/go-scopes/testing"
"git.sr.ht/~cco/go-scopes/common/testing"
)
func TestFunky(tb *tbase.T) {

View file

@ -4,13 +4,13 @@ import (
"fmt"
tbase "testing"
"git.sr.ht/~cco/go-scopes/common/testing"
"git.sr.ht/~cco/go-scopes/config"
"git.sr.ht/~cco/go-scopes/lib"
"git.sr.ht/~cco/go-scopes/lib/action"
"git.sr.ht/~cco/go-scopes/lib/context"
"git.sr.ht/~cco/go-scopes/lib/core"
"git.sr.ht/~cco/go-scopes/lib/message"
"git.sr.ht/~cco/go-scopes/testing"
)
func TestLib(tb *tbase.T) {

View file

@ -5,9 +5,9 @@ import (
tbase "testing"
"git.sr.ht/~cco/go-scopes/app"
"git.sr.ht/~cco/go-scopes/common/testing"
"git.sr.ht/~cco/go-scopes/lib"
"git.sr.ht/~cco/go-scopes/lib/message"
"git.sr.ht/~cco/go-scopes/testing"
"git.sr.ht/~cco/go-scopes/tests/etc"
)