summaryrefslogtreecommitdiffstats
path: root/tests/test_configuration.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_configuration.py')
-rw-r--r--tests/test_configuration.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/test_configuration.py b/tests/test_configuration.py
new file mode 100644
index 0000000..c59acfa
--- /dev/null
+++ b/tests/test_configuration.py
@@ -0,0 +1,31 @@
+#!/usr/bin/python3
+#
+# Copyright (C) 2011 Julian Andres Klode <jak@debian.org>
+#
+# Copying and distribution of this file, with or without modification,
+# are permitted in any medium without royalty provided the copyright
+# notice and this notice are preserved.
+"""Unit tests for verifying the correctness of apt_pkg.Configuration"""
+import unittest
+
+import apt_pkg
+import testcommon
+
+
+class TestConfiguration(testcommon.TestCase):
+ """Test various configuration things"""
+
+ def test_lp707416(self):
+ """configuration: Test empty arguments (LP: #707416)"""
+ self.assertRaises(ValueError, apt_pkg.parse_commandline, apt_pkg.config, [], [])
+ self.assertRaises(
+ SystemError,
+ apt_pkg.parse_commandline,
+ apt_pkg.config,
+ [],
+ ["cmd", "--arg0"],
+ )
+
+
+if __name__ == "__main__":
+ unittest.main()