mirror of
https://github.com/hashicorp/packer.git
synced 2026-02-25 19:04:59 -05:00
10 lines
198 B
Go
10 lines
198 B
Go
|
|
package common
|
||
|
|
|
||
|
|
import "testing"
|
||
|
|
|
||
|
|
func TestGetTerminalDimensions(t *testing.T) {
|
||
|
|
if _, _, err := GetTerminalDimensions(); err != nil {
|
||
|
|
t.Fatalf("Unable to get terminal dimensions: %s", err)
|
||
|
|
}
|
||
|
|
}
|