parent
8cc5fe1f01
commit
1dbd52c5cd
|
@ -46,6 +46,7 @@ type Owner struct {
|
|||
type System struct {
|
||||
SiteCode string `json:"site_code,omitempty"`
|
||||
DomainCode string `json:"domain_code,omitempty"`
|
||||
PrimaryDomainCode string `json:"primary_domain_code,omitempty"`
|
||||
}
|
||||
|
||||
// Location struct
|
||||
|
|
|
@ -39,13 +39,13 @@ func TestStart(t *testing.T) {
|
|||
},
|
||||
"b": nil,
|
||||
"c": []map[string]interface{}{
|
||||
map[string]interface{}{
|
||||
{
|
||||
"path": "c1",
|
||||
},
|
||||
},
|
||||
// fetch continue command in Connect
|
||||
"d": []map[string]interface{}{
|
||||
map[string]interface{}{
|
||||
{
|
||||
"path": "d0",
|
||||
},
|
||||
},
|
||||
|
|
|
@ -50,28 +50,28 @@ func TestStart(t *testing.T) {
|
|||
})
|
||||
allOutput, err := Register(map[string]interface{}{
|
||||
"a": []map[string]interface{}{
|
||||
map[string]interface{}{
|
||||
{
|
||||
"enable": false,
|
||||
"path": "a1",
|
||||
},
|
||||
map[string]interface{}{
|
||||
{
|
||||
"path": "a2",
|
||||
},
|
||||
map[string]interface{}{
|
||||
{
|
||||
"enable": true,
|
||||
"path": "a3",
|
||||
},
|
||||
},
|
||||
"b": nil,
|
||||
"c": []map[string]interface{}{
|
||||
map[string]interface{}{
|
||||
{
|
||||
"path": "c1",
|
||||
"filter": map[string]interface{}{},
|
||||
},
|
||||
},
|
||||
// fetch continue command in Connect
|
||||
"d": []map[string]interface{}{
|
||||
map[string]interface{}{
|
||||
{
|
||||
"path": "d0",
|
||||
},
|
||||
},
|
||||
|
|
|
@ -3,9 +3,15 @@ package inarea
|
|||
import (
|
||||
"testing"
|
||||
|
||||
<<<<<<< HEAD
|
||||
"github.com/FreifunkBremen/yanic/data"
|
||||
"github.com/FreifunkBremen/yanic/runtime"
|
||||
"github.com/stretchr/testify/assert"
|
||||
=======
|
||||
"github.com/stretchr/testify/assert"
|
||||
"yanic/data"
|
||||
"yanic/runtime"
|
||||
>>>>>>> 64b9cfe (add primary_domain_dode)
|
||||
)
|
||||
|
||||
func TestFilterInArea(t *testing.T) {
|
||||
|
|
Loading…
Reference in New Issue