Files
libopenapi/index/index_model_test.go
quobix 28047d08d2 First sweep at cleaning up dead code
first round of a number I am sure, lots to clean.

Signed-off-by: quobix <dave@quobix.com>
2023-10-21 18:26:21 -04:00

17 lines
325 B
Go

// Copyright 2023 Princess B33f Heavy Industries / Dave Shanley
// SPDX-License-Identifier: MIT
package index
import (
"github.com/stretchr/testify/assert"
"testing"
)
func TestSpecIndex_GetConfig(t *testing.T) {
idx1 := new(SpecIndex)
c := SpecIndexConfig{}
idx1.config = &c
assert.Equal(t, &c, idx1.GetConfig())
}