From c0741edc34c3d09b69c7a64a97aaca0e7759add1 Mon Sep 17 00:00:00 2001 From: Taylor Gerring Date: Sun, 22 Mar 2015 13:44:17 +0100 Subject: Move OS-specific funcs to path.go --- common/common_test.go | 35 ----------------------------------- 1 file changed, 35 deletions(-) delete mode 100644 common/common_test.go (limited to 'common/common_test.go') diff --git a/common/common_test.go b/common/common_test.go deleted file mode 100644 index a94dd1792..000000000 --- a/common/common_test.go +++ /dev/null @@ -1,35 +0,0 @@ -package common - -import ( - "os" - - checker "gopkg.in/check.v1" -) - -type CommonSuite struct{} - -var _ = checker.Suite(&CommonSuite{}) - -func (s *CommonSuite) TestOS(c *checker.C) { - expwin := (os.PathSeparator == '\\' && os.PathListSeparator == ';') - res := IsWindows() - - if !expwin { - c.Assert(res, checker.Equals, expwin, checker.Commentf("IsWindows is", res, "but path is", os.PathSeparator)) - } else { - c.Assert(res, checker.Not(checker.Equals), expwin, checker.Commentf("IsWindows is", res, "but path is", os.PathSeparator)) - } -} - -func (s *CommonSuite) TestWindonziePath(c *checker.C) { - iswindowspath := os.PathSeparator == '\\' - path := "/opt/eth/test/file.ext" - res := WindonizePath(path) - ressep := string(res[0]) - - if !iswindowspath { - c.Assert(ressep, checker.Equals, "/") - } else { - c.Assert(ressep, checker.Not(checker.Equals), "/") - } -} -- cgit v1.2.3