15 lines
280 B
Go
15 lines
280 B
Go
package internal_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/TrueCloudLab/frostfs-node/cmd/frostfs-node/config/internal"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestEnv(t *testing.T) {
|
|
require.Equal(t,
|
|
"NEOFS_SECTION_PARAMETER",
|
|
internal.Env("section", "parameter"),
|
|
)
|
|
}
|