vendor gotest.tools/gotestsum

This commit is contained in:
Jordan Liggitt
2019-07-31 15:23:52 -04:00
parent 93c02e164f
commit bd2dc5e5a2
81 changed files with 5469 additions and 698 deletions

10
vendor/github.com/mattn/go-isatty/isatty_others.go generated vendored Normal file
View File

@@ -0,0 +1,10 @@
// +build !windows
// +build !appengine
package isatty
// IsCygwinTerminal() return true if the file descriptor is a cygwin or msys2
// terminal. This is also always false on this environment.
func IsCygwinTerminal(fd uintptr) bool {
return false
}