From 98015093d853fdf40850628bba224369b470c02c Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Mon, 28 Dec 2009 22:16:47 +0000 Subject: [PATCH] Add a test to make sure that we correctly load boolean types as python bools --- terminatorlib/config.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/terminatorlib/config.py b/terminatorlib/config.py index 7ecf1263..e4d613da 100755 --- a/terminatorlib/config.py +++ b/terminatorlib/config.py @@ -35,6 +35,8 @@ Classes relating to configuration 'click' >>> config['focus'] 'click' +>>> config['fullscreen'].__class__.__name__ +'bool' >>> """