vendor
This commit is contained in:
19
vendor/gopkg.in/check.v1/export_test.go
generated
vendored
Normal file
19
vendor/gopkg.in/check.v1/export_test.go
generated
vendored
Normal file
@ -0,0 +1,19 @@
|
||||
package check
|
||||
|
||||
import "io"
|
||||
|
||||
func PrintLine(filename string, line int) (string, error) {
|
||||
return printLine(filename, line)
|
||||
}
|
||||
|
||||
func Indent(s, with string) string {
|
||||
return indent(s, with)
|
||||
}
|
||||
|
||||
func NewOutputWriter(writer io.Writer, stream, verbose bool) *outputWriter {
|
||||
return newOutputWriter(writer, stream, verbose)
|
||||
}
|
||||
|
||||
func (c *C) FakeSkip(reason string) {
|
||||
c.reason = reason
|
||||
}
|
||||
Reference in New Issue
Block a user