1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
// Copyright 2015 Canonical Ltd.
// Licensed under the LGPLv3, see LICENCE file for details.
package utils_test
import (
"github.com/juju/testing"
jc "github.com/juju/testing/checkers"
gc "gopkg.in/check.v1"
"github.com/juju/utils/v2"
)
var _ = gc.Suite(&osSuite{})
type osSuite struct {
testing.IsolationSuite
}
func (osSuite) TestOSIsUnixKnown(c *gc.C) {
for _, os := range utils.OSUnix {
c.Logf("checking %q", os)
isUnix := utils.OSIsUnix(os)
c.Check(isUnix, jc.IsTrue)
}
}
func (osSuite) TestOSIsUnixWindows(c *gc.C) {
isUnix := utils.OSIsUnix("windows")
c.Check(isUnix, jc.IsFalse)
}
func (osSuite) TestOSIsUnixUnknown(c *gc.C) {
isUnix := utils.OSIsUnix("<unknown OS>")
c.Check(isUnix, jc.IsFalse)
}
|