Improve tests (#778)

* Implement missing unit-tests
* Add acceptance tests for ISSUE #776
* Update list of classifiers, keywords and authors
This commit is contained in:
Alexander Kukushkin
2018-08-29 11:29:37 +02:00
committed by GitHub
parent 518df2bc49
commit 87e9aab04c
6 changed files with 45 additions and 5 deletions
+1
View File
@@ -70,6 +70,7 @@ class TestConfig(unittest.TestCase):
self.assertRaises(Exception, config.reload_local_configuration, True)
self.assertTrue(config.reload_local_configuration(True))
self.assertTrue(config.reload_local_configuration())
self.assertIsNone(config.reload_local_configuration())
@patch('tempfile.mkstemp', Mock(return_value=[3000, 'blabla']))
@patch('os.path.exists', Mock(return_value=True))