aboutsummaryrefslogtreecommitdiffstats
path: root/utils
diff options
context:
space:
mode:
Diffstat (limited to 'utils')
-rw-r--r--utils/fs/test/fs_suite.go18
1 files changed, 18 insertions, 0 deletions
diff --git a/utils/fs/test/fs_suite.go b/utils/fs/test/fs_suite.go
index e8e04ab..a809309 100644
--- a/utils/fs/test/fs_suite.go
+++ b/utils/fs/test/fs_suite.go
@@ -95,6 +95,24 @@ func (s *FilesystemSuite) TestReadDirAndDir(c *C) {
c.Assert(info, HasLen, 2)
}
+func (s *FilesystemSuite) TestDirStat(c *C) {
+ files := []string{"foo", "bar", "qux/baz", "qux/qux"}
+ for _, name := range files {
+ f, err := s.Fs.Create(name)
+ c.Assert(err, IsNil)
+ c.Assert(f.Close(), IsNil)
+ }
+
+ qux := s.Fs.Dir("qux")
+ fi, err := qux.Stat("baz")
+ c.Assert(err, IsNil)
+ c.Assert(fi.Name(), Equals, "baz")
+
+ fi, err = qux.Stat("/baz")
+ c.Assert(err, IsNil)
+ c.Assert(fi.Name(), Equals, "baz")
+}
+
func (s *FilesystemSuite) TestCreateInDir(c *C) {
dir := s.Fs.Dir("foo")
f, err := dir.Create("bar")