(c *C)
| 270 | } |
| 271 | |
| 272 | func (s *PublishedStorageSuite) TestRemoveDirsDelegatesToRemove(c *C) { |
| 273 | s.manager.getPathsToDelete = createReader(c, []jfrogutils.ResultItem{}) |
| 274 | c.Assert(s.storage.RemoveDirs("x", nil), IsNil) |
| 275 | c.Assert(len(s.manager.deleteParams), Equals, 1) |
| 276 | } |
| 277 | |
| 278 | func (s *PublishedStorageSuite) TestLinkFromPoolDelegatesToPutFile(c *C) { |
| 279 | err := s.storage.LinkFromPool("", "pool/main/p", "pkg.deb", nil, "/tmp/source.deb", aptly_utils.ChecksumInfo{}, false) |
nothing calls this directly
no test coverage detected