From 9aa0735f488fc9233fc1c35348e1c7d95b897fcb Mon Sep 17 00:00:00 2001 From: Ander <9and3r@gmail.com> Date: Mon, 6 Apr 2015 02:01:44 +0200 Subject: [PATCH] Test change --- tests/test_extension.py | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/tests/test_extension.py b/tests/test_extension.py index bfe8271..cc1a857 100644 --- a/tests/test_extension.py +++ b/tests/test_extension.py @@ -2,12 +2,8 @@ import unittest -import pygame - from mopidy_touchscreen import Extension -from mopidy_touchscreen.graphic_utils.list_view import ListView - # ,touch_screen as frontend_lib @@ -31,9 +27,3 @@ class ExtensionTest(unittest.TestCase): # TODO Test the content of your config schema # self.assertIn('username', schema) # self.assertIn('password', schema) - - def test_list_view(self): - pygame.init() - font = pygame.font.SysFont("arial", 200/6) - list = ListView((0, 0), (200, 200), 200/6, font) - list.set_list(["item1", "item2", "item3"])