~ubuntu-branches/ubuntu/karmic/quodlibet/karmic

« back to all changes in this revision

Viewing changes to tests/test_qltk_info.py

  • Committer: Bazaar Package Importer
  • Author(s): Luca Falavigna
  • Date: 2009-01-30 23:55:34 UTC
  • mfrom: (1.1.12 upstream)
  • Revision ID: james.westby@ubuntu.com-20090130235534-l4e72ulw0vqfo17w
Tags: 2.0-1ubuntu1
* Merge from Debian experimental (LP: #276856), remaining Ubuntu changes:
  + debian/patches/40-use-music-profile.patch:
    - Use the "Music and Movies" pipeline per default.
* Refresh the above patch for new upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
from tests import TestCase, add
 
2
 
 
3
from quodlibet.player.nullbe import NullPlayer
 
4
from quodlibet.qltk.info import SongInfo
 
5
from quodlibet.library import SongLibrary
 
6
 
 
7
class TSongInfo(TestCase):
 
8
    def setUp(self):
 
9
        self.info = SongInfo(SongLibrary(), NullPlayer())
 
10
    def test_ctr(self): pass
 
11
    def tearDown(self):
 
12
        self.info.destroy()
 
13
add(TSongInfo)