diff --git a/fmtutil/termsize_linux_test.go b/fmtutil/termsize_linux_test.go new file mode 100644 index 00000000..9edb5071 --- /dev/null +++ b/fmtutil/termsize_linux_test.go @@ -0,0 +1,23 @@ +// +build linux + +package fmtutil + +// ////////////////////////////////////////////////////////////////////////////////// // +// // +// Copyright (c) 2009-2015 Essential Kaos // +// Essential Kaos Open Source License // +// // +// ////////////////////////////////////////////////////////////////////////////////// // + +import ( + . "gopkg.in/check.v1" +) + +// //////////////////////////////////////////////////// + +func (s *FmtUtilSuite) TestTermSize(c *C) { + w, h := GetTermSize() + + c.Assert(w, Not(Equals), 0) + c.Assert(h, Not(Equals), 0) +}