(c *C)
| 559 | } |
| 560 | |
| 561 | func (s *PublishedRepoSuite) TestPublishLocalSourceRepo(c *C) { |
| 562 | err := s.repo4.Publish(s.packagePool, s.provider, s.factory, nil, nil, false, "") |
| 563 | c.Assert(err, IsNil) |
| 564 | |
| 565 | c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/maverick/Release"), PathExists) |
| 566 | c.Check(filepath.Join(s.publishedStorage.PublicPath(), "ppa/dists/maverick/main/source/Release"), PathExists) |
| 567 | } |
| 568 | |
| 569 | func (s *PublishedRepoSuite) TestPublishOtherStorage(c *C) { |
| 570 | err := s.repo5.Publish(s.packagePool, s.provider, s.factory, nil, nil, false, "") |
nothing calls this directly
no test coverage detected