func (s *ClientSuite) TestPropfind(c *C) { ms, err := s.client.WebDAV().Propfind("/", webdav.Depth0, webentities.NewAllPropsFind()) c.Assert(err, IsNil) c.Assert(ms.Responses, Not(HasLen), 0) c.Assert(ms.Responses[0].Href, Not(HasLen), 0) c.Assert(ms.Responses[0].PropStats, Not(HasLen), 0) c.Assert(ms.Responses[0].PropStats[0].Prop, NotNil) c.Assert(ms.Responses[0].PropStats[0].Prop.ResourceType, NotNil) c.Assert(ms.Responses[0].PropStats[0].Prop.ResourceType.Calendar, NotNil) }
func (s *ClientSuite) TestPropfind(c *C) { ms, err := s.client.Propfind("/", Depth0, entities.NewAllPropsFind()) c.Assert(err, IsNil) c.Assert(ms.Responses, Not(HasLen), 0) c.Assert(ms.Responses[0].Href, Not(HasLen), 0) c.Assert(ms.Responses[0].PropStats, Not(HasLen), 0) c.Assert(ms.Responses[0].PropStats[0].Prop, NotNil) c.Assert(ms.Responses[0].PropStats[0].Prop.ResourceType, NotNil) c.Assert(ms.Responses[0].PropStats[0].Prop.ResourceType.Collection, NotNil) }