summaryrefslogtreecommitdiffstats
path: root/tests/test_manifest_xml.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/test_manifest_xml.py')
-rw-r--r--tests/test_manifest_xml.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/tests/test_manifest_xml.py b/tests/test_manifest_xml.py
index ecc84ad7..b6ec5b86 100644
--- a/tests/test_manifest_xml.py
+++ b/tests/test_manifest_xml.py
@@ -49,6 +49,8 @@ class ManifestValidateFilePaths(unittest.TestCase):
49 # We allow symlinks to end in a slash since we allow them to point to dirs 49 # We allow symlinks to end in a slash since we allow them to point to dirs
50 # in general. Technically the slash isn't necessary. 50 # in general. Technically the slash isn't necessary.
51 check('foo/', 'bar') 51 check('foo/', 'bar')
52 # We allow a single '.' to get a reference to the project itself.
53 check('.', 'bar')
52 54
53 def test_bad_paths(self): 55 def test_bad_paths(self):
54 """Make sure bad paths (src & dest) are rejected.""" 56 """Make sure bad paths (src & dest) are rejected."""