remove deprecated test.

This commit is contained in:
Nathan Isom 2015-10-16 10:59:02 -05:00
parent 09b18fbc68
commit 9b8b2130ef

View File

@ -82,14 +82,10 @@ class TestColorDict:
@pytest.mark.parametrize('key, expected', [
('foo', 'one'),
('foo.fg', 'color: two;'),
('foo.bg', 'background-color: three;'),
])
def test_values(self, key, expected):
d = style.ColorDict()
d['foo'] = 'one'
d['foo.fg'] = 'two'
d['foo.bg'] = 'three'
assert d[key] == expected
def test_key_error(self, caplog):