[core/theme] Add preliminary cycling support
Add support for cycling values in a theme, for now as long as the cycle size is 0 :P
This commit is contained in:
parent
f05098a120
commit
26ae63b5ad
3 changed files with 25 additions and 6 deletions
|
@ -6,11 +6,17 @@ class theme(unittest.TestCase):
|
|||
def setUp(self):
|
||||
self.invalidThemeName = 'this-theme-does-not-exist'
|
||||
self.validThemeName = 'default'
|
||||
self.defaults = {
|
||||
self.defaultsTheme = {
|
||||
'defaults': {
|
||||
'fg': 'red', 'bg': 'black'
|
||||
}
|
||||
}
|
||||
self.cycleTheme = {
|
||||
'cycle': [
|
||||
{ 'fg': 'red', 'bg': 'black' },
|
||||
{ 'fg': 'black', 'bg': 'red' }
|
||||
]
|
||||
}
|
||||
|
||||
def test_invalid_theme(self):
|
||||
with self.assertRaises(RuntimeError):
|
||||
|
@ -21,8 +27,13 @@ class theme(unittest.TestCase):
|
|||
self.assertEqual(self.validThemeName, theme.name)
|
||||
|
||||
def test_defaults(self):
|
||||
theme = core.theme.Theme(raw_data=self.defaults)
|
||||
self.assertEqual(self.defaults['defaults']['fg'], theme.fg())
|
||||
self.assertEqual(self.defaults['defaults']['bg'], theme.bg())
|
||||
theme = core.theme.Theme(raw_data=self.defaultsTheme)
|
||||
self.assertEqual(self.defaultsTheme['defaults']['fg'], theme.fg())
|
||||
self.assertEqual(self.defaultsTheme['defaults']['bg'], theme.bg())
|
||||
|
||||
def test_cycle(self):
|
||||
theme = core.theme.Theme(raw_data=self.cycleTheme)
|
||||
self.assertEqual(self.cycleTheme['cycle'][0]['fg'], theme.fg())
|
||||
self.assertEqual(self.cycleTheme['cycle'][0]['bg'], theme.bg())
|
||||
|
||||
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue