summaryrefslogtreecommitdiff
path: root/tests/settings
diff options
context:
space:
mode:
authorDylan Baker <dylan@pnwbakers.com>2017-01-25 09:36:23 -0800
committerDylan Baker <dylan@pnwbakers.com>2017-01-25 10:37:20 -0800
commitde85d34545fc8f67b80697a73a2d676b740e9ddd (patch)
tree368c4bf753d9549c0182a8a66035a0429f823530 /tests/settings
parent0ec97d98e82d10024419199b93c1d13a1cedc5eb (diff)
move alot/settings/checks to alot/utils/configobj
This is just more reorganization.
Diffstat (limited to 'tests/settings')
-rw-r--r--tests/settings/checks_test.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/settings/checks_test.py b/tests/settings/checks_test.py
deleted file mode 100644
index 86269c29..00000000
--- a/tests/settings/checks_test.py
+++ /dev/null
@@ -1,17 +0,0 @@
-# encoding=utf-8
-from __future__ import absolute_import
-
-import unittest
-
-from alot.settings import checks
-
-
-class TestForceList(unittest.TestCase):
-
- def test_strings_are_converted_to_single_item_lists(self):
- forced = checks.force_list('hello')
- self.assertEqual(forced, ['hello'])
-
- def test_empty_strings_are_converted_to_empty_lists(self):
- forced = checks.force_list('')
- self.assertEqual(forced, [])