github.com/onsi/ginkgo v1.6.0

This commit is contained in:
Jordan Liggitt
2019-04-16 10:28:44 -04:00
parent 99e61466ab
commit 56b1963705
147 changed files with 5178 additions and 250 deletions

11
vendor/github.com/hpcloud/tail/tail_posix.go generated vendored Normal file
View File

@@ -0,0 +1,11 @@
// +build linux darwin freebsd netbsd openbsd
package tail
import (
"os"
)
func OpenFile(name string) (file *os.File, err error) {
return os.Open(name)
}