summaryrefslogtreecommitdiff
path: root/reconfigure/tests/configs/hosts_tests.py
diff options
context:
space:
mode:
authorAndrew Shadura <andrew@shadura.me>2015-08-20 15:58:26 +0200
committerAndrew Shadura <andrew@shadura.me>2015-08-20 15:58:26 +0200
commitff1408420159488a106492ccd11dd234967029b6 (patch)
tree473420cee1c5229a427ec4cafead1aa6c0a26800 /reconfigure/tests/configs/hosts_tests.py
Imported Upstream version 0.1.29
Diffstat (limited to 'reconfigure/tests/configs/hosts_tests.py')
-rw-r--r--reconfigure/tests/configs/hosts_tests.py40
1 files changed, 40 insertions, 0 deletions
diff --git a/reconfigure/tests/configs/hosts_tests.py b/reconfigure/tests/configs/hosts_tests.py
new file mode 100644
index 0000000..e202929
--- /dev/null
+++ b/reconfigure/tests/configs/hosts_tests.py
@@ -0,0 +1,40 @@
+from reconfigure.configs import HostsConfig
+from base_test import BaseConfigTest
+
+
+class FSTabConfigTest (BaseConfigTest):
+ sources = {
+ None: """a1 h1 a2 a3 a4
+a5 h2
+a6 h3 a7
+"""
+ }
+ result = {
+ 'hosts': [
+ {
+ 'address': 'a1',
+ 'name': 'h1',
+ 'aliases': [
+ {'name': 'a2'},
+ {'name': 'a3'},
+ {'name': 'a4'},
+ ]
+ },
+ {
+ 'address': 'a5',
+ 'aliases': [],
+ 'name': 'h2',
+ },
+ {
+ 'address': 'a6',
+ 'name': 'h3',
+ 'aliases': [
+ {'name': 'a7'},
+ ]
+ },
+ ]
+ }
+ config = HostsConfig
+
+
+del BaseConfigTest