Revision: 1163
Author:
J.S.P...@gmail.com
Date: Wed Aug 14 13:03:51 2013
Log: Fixing line length issue.
http://code.google.com/p/roster-dns-management/source/detail?r=1163
Modified:
/trunk/test/tree_exporter_test.py
=======================================
--- /trunk/test/tree_exporter_test.py Wed Aug 14 12:58:50 2013
+++ /trunk/test/tree_exporter_test.py Wed Aug 14 13:03:51 2013
@@ -322,7 +322,43 @@
'\tmatch-clients { \n'
'\t\tpublic;\n'
'\t };\n'
- '\trecursion no;\n\tzone "." {\n\t\ttype
hint;\n\t\tfile "
named.ca";\n\t};\n\tzone "
university.edu" {\n\t\ttype
master;\n\t\tfile "external/university.edu.db";\n\t\tallow-update { none;
};\n\t};\n\tzone "4.3.2.in-addr.arpa" {\n\t\ttype
master;\n\t\tfile "external/4.3.2.in-addr.db";\n\t\tallow-update { none;
};\n\t};\n};\nview "internal" {\n\tmatch-clients {
\n\t\t!public;\n\t\tsecret;\n\t };\n\trecursion no;\n\tzone "." {\n\t\ttype
hint;\n\t\tfile "
named.ca";\n\t};\n\tzone "
university.edu" {\n\t\ttype
master;\n\t\tfile "internal/university.edu.db";\n\t\tallow-update { none;
};\n\t};\n\tzone "168.192.in-addr.arpa" {\n\t\ttype
master;\n\t\tfile "internal/168.192.in-addr.db";\n\t\tallow-update { none;
};\n\t};\n};')
+ '\trecursion no;\n'
+ '\tzone "." {\n'
+ '\t\ttype hint;\n'
+ '\t\tfile "
named.ca";\n'
+ '\t};\n'
+ '\tzone "
university.edu" {\n'
+ '\t\ttype master;\n'
+ '\t\tfile "external/university.edu.db";\n'
+ '\t\tallow-update { none; };\n'
+ '\t};\n'
+ '\tzone "4.3.2.in-addr.arpa" {\n'
+ '\t\ttype master;\n'
+ '\t\tfile "external/4.3.2.in-addr.db";\n'
+ '\t\tallow-update { none; };\n'
+ '\t};\n'
+ '};\n'
+ 'view "internal" {\n'
+ '\tmatch-clients { \n'
+ '\t\t!public;\n'
+ '\t\tsecret;\n'
+ '\t };\n'
+ '\trecursion no;\n'
+ '\tzone "." {\n'
+ '\t\ttype hint;\n'
+ '\t\tfile "
named.ca";\n'
+ '\t};\n'
+ '\tzone "
university.edu" {\n'
+ '\t\ttype master;\n'
+ '\t\tfile "internal/university.edu.db";\n'
+ '\t\tallow-update { none; };\n'
+ '\t};\n'
+ '\tzone "168.192.in-addr.arpa" {\n'
+ '\t\ttype master;\n'
+ '\t\tfile "internal/168.192.in-addr.db";\n'
+ '\t\tallow-update { none; };\n'
+ '\t};\n'
+ '};')
self.assertEqual(n_conf, expected_n_conf)