github.com/thediveo/gons@v0.9.9/reexec/internal/testsupport/testingargs_test.go (about) 1 // Copyright 2020 Harald Albrecht. 2 // 3 // Licensed under the Apache License, Version 2.0 (the "License"); 4 // you may not use this file except in compliance with the License. 5 // You may obtain a copy of the License at 6 // 7 // http://www.apache.org/licenses/LICENSE-2.0 8 // 9 // Unless required by applicable law or agreed to in writing, software 10 // distributed under the License is distributed on an "AS IS" BASIS, 11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 12 // See the License for the specific language governing permissions and 13 // limitations under the License. 14 15 package testsupport 16 17 import ( 18 . "github.com/onsi/ginkgo/v2" 19 . "github.com/onsi/gomega" 20 ) 21 22 var _ = Describe("testing-related args", func() { 23 24 It("correctly generates child's testing-related args", func() { 25 defer func(et bool) { TestingEnabled = et }(TestingEnabled) 26 defer func() { CoverageProfiles = []string{} }() 27 EnableTesting("/foo", "bar") 28 tstargs := TestingArgs() 29 Expect(tstargs).To(ContainElement("-test.coverprofile=bar_0")) 30 Expect(tstargs).To(ContainElement("-test.outputdir=/foo")) 31 Expect(tstargs).To(ContainElement(MatchRegexp("-test.run=.+"))) 32 }) 33 34 })