Exemplo n.º 1
0
class TPreferencesWindow(TestCase):
    def setUp(self):
        quodlibet.config.init()
        self.win = PreferencesWindow(None)

    def test_ctr(self):
        pass

    def tearDown(self):
        self.win.destroy()
        quodlibet.config.quit()
Exemplo n.º 2
0
class TPreferencesWindow(TestCase):
    def setUp(self):
        config.init()
        # Avoid warnings when running with empty config
        config.set_columns(["artist", "title"])
        self.win = PreferencesWindow(None)

    def test_ctr(self):
        pass

    def tearDown(self):
        self.win.destroy()
        config.quit()
Exemplo n.º 3
0
class TPreferencesWindow(TestCase):

    def setUp(self):
        config.init()
        init_fake_app()
        # Avoid warnings when running with empty config
        set_columns(["artist", "title"])
        self.win = PreferencesWindow(None)

    def test_ctr(self):
        pass

    def tearDown(self):
        destroy_fake_app()
        self.win.destroy()
        config.quit()