~ubuntu-branches/ubuntu/precise/mutagen/precise

« back to all changes in this revision

Viewing changes to tests/test_easyid3.py

  • Committer: Bazaar Package Importer
  • Author(s): Tristan Seligmann
  • Date: 2006-08-12 16:13:06 UTC
  • mfrom: (1.1.3 upstream)
  • Revision ID: james.westby@ubuntu.com-20060812161306-w9cda1whtgb2r489
Tags: 1.6-1
* New upstream version.
* Install upstream changelog as changelog.gz (closes: #376575).
  - Thanks to Bastian Kleineidam <calvin@debian.org> for the patch.
* Tweak watch file.
* Add Provides: pythonX.Y-mutagen.

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
        self.id3["artist"] = "foobar"
19
19
        self.id3.save(self.filename)
20
20
        self.failUnless(os.path.getsize(self.filename))
21
 
        delete(self.filename)
 
21
        self.id3.delete(self.filename)
22
22
        self.failIf(os.path.getsize(self.filename))
 
23
        self.failIf(self.id3)
23
24
 
24
25
    def test_pprint(self):
25
26
        self.id3["artist"] = "baz"