mirror of
https://github.com/lukaszraczylo/graphql-monitoring-proxy.git
synced 2026-06-05 23:03:48 +00:00
14 lines
296 B
Go
14 lines
296 B
Go
package libpack_config
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestConfigConstants(t *testing.T) {
|
|
// Verify package constants are defined
|
|
assert.NotEmpty(t, PKG_NAME, "PKG_NAME should be defined")
|
|
assert.NotEmpty(t, PKG_VERSION, "PKG_VERSION should be defined")
|
|
}
|