Merge pull request #452 from joshbarrass/useasbool
Use util.asbool rather than manual true-value parsing
This commit is contained in:
commit
08ce5ae89b
2 changed files with 12 additions and 3 deletions
|
@ -7,15 +7,14 @@ import json
|
|||
import uuid
|
||||
|
||||
import bumblebee.store
|
||||
|
||||
_TrueValues = ["true", "t", "yes", "y", "1"]
|
||||
import bumblebee.util
|
||||
|
||||
def scrollable(func):
|
||||
def wrapper(module, widget):
|
||||
text = func(module, widget)
|
||||
if not text: return text
|
||||
width = widget.get("theme.width", module.parameter("width", 30))
|
||||
if module.parameter("scrolling.makewide", "true").lower() in _TrueValues:
|
||||
if bumblebee.util.asbool(module.parameter("scrolling.makewide", "true")):
|
||||
widget.set("theme.minwidth", "A"*width)
|
||||
if len(text) <= width:
|
||||
return text
|
||||
|
|
|
@ -69,5 +69,15 @@ class TestUtil(unittest.TestCase):
|
|||
# test if which also works with garbage input
|
||||
self.assertTrue(bu.which("qwertygarbage") is None)
|
||||
|
||||
def test_asbool(self):
|
||||
for val in ("t", "true", "y", "yes", "on", "1", 1, True):
|
||||
self.assertTrue(bu.asbool(val))
|
||||
if isinstance(val, str):
|
||||
self.assertTrue(bu.asbool(val.upper()))
|
||||
|
||||
for val in ("f", "false", "n", "no", "off", "0", 0, False):
|
||||
self.assertFalse(bu.asbool(val))
|
||||
if isinstance(val, str):
|
||||
self.assertFalse(bu.asbool(val.upper()))
|
||||
|
||||
# vim: tabstop=8 expandtab shiftwidth=4 softtabstop=4
|
||||
|
|
Loading…
Reference in a new issue