forked from tildetown/bbj2
23 lines
323 B
Go
23 lines
323 B
Go
|
package api
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"git.tilde.town/tildetown/bbj2/server/cmd/config"
|
||
|
)
|
||
|
|
||
|
func TestInstanceInfo(t *testing.T) {
|
||
|
ts := []struct {
|
||
|
name string
|
||
|
opts config.Options
|
||
|
wantResp *BBJResponse
|
||
|
wantErr HTTPError
|
||
|
}{}
|
||
|
|
||
|
for _, tt := range ts {
|
||
|
t.Run(tt.name, func(t *testing.T) {
|
||
|
// TODO
|
||
|
})
|
||
|
}
|
||
|
}
|