summaryrefslogtreecommitdiff
path: root/tests/test_configuration.py
blob: adf33719ba4bb0d147dcd75a2b7b3bb40ef4d4cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
#!/usr/bin/python
#
# 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


class TestConfiguration(unittest.TestCase):
    """Test various configuration things"""

    def setUp(self):
        """Prepare the tests, create reference values..."""
        apt_pkg.init_config()

    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()