mirror of
https://github.com/Luzifer/go_helpers.git
synced 2024-12-25 21:41:20 +00:00
13 lines
182 B
Go
13 lines
182 B
Go
package env_test
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
|
|
"testing"
|
|
)
|
|
|
|
func TestEnv(t *testing.T) {
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Env Suite")
|
|
}
|