summaryrefslogtreecommitdiff
path: root/yarnhelper_tests.py
diff options
context:
space:
mode:
Diffstat (limited to 'yarnhelper_tests.py')
-rw-r--r--yarnhelper_tests.py5
1 files changed, 5 insertions, 0 deletions
diff --git a/yarnhelper_tests.py b/yarnhelper_tests.py
index e5cab3f..46a0604 100644
--- a/yarnhelper_tests.py
+++ b/yarnhelper_tests.py
@@ -80,6 +80,11 @@ class PersistentVariableTests(unittest.TestCase):
h2 = yarnhelper.YarnHelper()
self.assertEqual(h2.get_variable('FOO'), 'bar')
+ def test_appends_to_empty_list(self):
+ h = yarnhelper.YarnHelper()
+ h.append_to_list('foo', 1)
+ self.assertEqual(h.get_variable('foo'), [1])
+
class HttpTests(unittest.TestCase):