(c *C)
| 411 | } |
| 412 | |
| 413 | func (s *PackageSuite) TestFilepathList(c *C) { |
| 414 | packagePool := files.NewPackagePool(c.MkDir(), true) |
| 415 | p := NewPackageFromControlFile(s.stanza) |
| 416 | |
| 417 | list, err := p.FilepathList(packagePool) |
| 418 | c.Check(err, IsNil) |
| 419 | c.Check(list, DeepEquals, []string{"1e/8c/alien-arena-common_7.40-2_i386.deb"}) |
| 420 | } |
| 421 | |
| 422 | func (s *PackageSuite) TestDownloadList(c *C) { |
| 423 | packagePool := files.NewPackagePool(c.MkDir(), false) |
nothing calls this directly
no test coverage detected