Merge trunk.
[jelmer/dulwich.git] / dulwich / tests / test_config.py
1 # test_config.py -- Tests for reading and writing configuration files
2 # Copyright (C) 2011 Jelmer Vernooij <jelmer@samba.org>
3 #
4 # This program is free software; you can redistribute it and/or
5 # modify it under the terms of the GNU General Public License
6 # as published by the Free Software Foundation; either version 2
7 # or (at your option) a later version of the License.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
17 # MA  02110-1301, USA.
18
19 """Tests for reading and writing configuraiton files."""
20
21 from cStringIO import StringIO
22 from dulwich.config import ConfigFile
23 from dulwich.tests import TestCase
24
25
26 class ConfigFileTests(TestCase):
27
28     def from_file(self, text):
29         return ConfigFile.from_file(StringIO(text))
30
31     def test_empty(self):
32         ConfigFile()
33
34     def test_eq(self):
35         self.assertEquals(ConfigFile(), ConfigFile())
36
37     def test_from_file_empty(self):
38         cf = self.from_file("")
39         self.assertEquals(ConfigFile(), cf)