mirror of
https://github.com/owncloud/ocis
synced 2026-04-25 17:25:21 +02:00
Allow to pass comma-separated strings via Enviroment variables and store them in a string slice.
14 lines
194 B
Go
14 lines
194 B
Go
package config_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
. "github.com/onsi/ginkgo/v2"
|
|
. "github.com/onsi/gomega"
|
|
)
|
|
|
|
func TestConfig(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Config Suite")
|
|
}
|