added support for string type
[govpp.git] / vendor / github.com / onsi / gomega / gexec / gexec_suite_test.go
1 package gexec_test
2
3 import (
4         . "github.com/onsi/ginkgo"
5         . "github.com/onsi/gomega"
6         "github.com/onsi/gomega/gexec"
7
8         "testing"
9 )
10
11 var fireflyPath string
12
13 func TestGexec(t *testing.T) {
14         BeforeSuite(func() {
15                 var err error
16                 fireflyPath, err = gexec.Build("./_fixture/firefly")
17                 Ω(err).ShouldNot(HaveOccurred())
18         })
19
20         AfterSuite(func() {
21                 gexec.CleanupBuildArtifacts()
22         })
23
24         RegisterFailHandler(Fail)
25         RunSpecs(t, "Gexec Suite")
26 }