wormhole-explorer/fly/config/config_test.go

28 lines
426 B
Go

package config
import (
"os"
"testing"
"github.com/stretchr/testify/assert"
)
func TestGetPrefix(t *testing.T) {
os.Clearenv()
os.Setenv("P2P_NETWORK", "mainnet")
os.Setenv("ENVIROMENT", "staging")
prefix := GetPrefix()
assert.Equal(t, "mainnet-staging", prefix)
}
func TestGetPrefixNoP2P(t *testing.T) {
os.Clearenv()
os.Setenv("ENVIROMENT", "staging")
prefix := GetPrefix()
assert.Equal(t, "", prefix)
}