isatty_others_test.go 185 B

1234567891011121314
  1. // +build !windows
  2. package isatty
  3. import (
  4. "os"
  5. "testing"
  6. )
  7. func TestCygwinPipeName(t *testing.T) {
  8. if IsCygwinTerminal(os.Stdout.Fd()) {
  9. t.Fatal("should be false always")
  10. }
  11. }