Skip to content

Commit a6463b3

Browse files
andrewradamis-vividseatsonsi
authored andcommitted
Bug Fix: Add GinkoTBWrapper.Attr() and GinkoTBWrapper.Output()
1 parent 50ccbbe commit a6463b3

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

ginkgo_t_dsl.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -190,3 +190,9 @@ func (g *GinkgoTBWrapper) Skipped() bool {
190190
func (g *GinkgoTBWrapper) TempDir() string {
191191
return g.GinkgoT.TempDir()
192192
}
193+
func (g *GinkgoTBWrapper) Attr(key, value string) {
194+
g.GinkgoT.Attr(key, value)
195+
}
196+
func (g *GinkgoTBWrapper) Output() io.Writer {
197+
return g.GinkgoT.Output()
198+
}

0 commit comments

Comments
 (0)