(c *C)
| 149 | } |
| 150 | |
| 151 | func (s *ChangesSuite) TestPrepare(c *C) { |
| 152 | changes, err := NewChanges("testdata/changes/hardlink_0.2.1_amd64.changes") |
| 153 | c.Assert(err, IsNil) |
| 154 | err = changes.Prepare() |
| 155 | c.Assert(err, IsNil) |
| 156 | |
| 157 | _, err = os.Stat(filepath.Join(changes.TempDir, "hardlink_0.2.1_amd64.changes")) |
| 158 | c.Check(err, IsNil) |
| 159 | } |
| 160 | |
| 161 | func (s *ChangesSuite) TestPackageQuery(c *C) { |
| 162 | changes, err := NewChanges(s.Path) |
nothing calls this directly
no test coverage detected