summaryrefslogtreecommitdiffstats
path: root/tests/portage_util/test_normalizedPath.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/portage_util/test_normalizedPath.py')
-rw-r--r--tests/portage_util/test_normalizedPath.py15
1 files changed, 0 insertions, 15 deletions
diff --git a/tests/portage_util/test_normalizedPath.py b/tests/portage_util/test_normalizedPath.py
deleted file mode 100644
index bd575d266..000000000
--- a/tests/portage_util/test_normalizedPath.py
+++ /dev/null
@@ -1,15 +0,0 @@
-# test_normalizePath.py -- Portage Unit Testing Functionality
-# Copyright 2006 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-from unittest import TestCase
-
-class NormalizePathTestCase(TestCase):
-
- def testNormalizePath(self):
-
- from portage.util import normalize_path
- path = "///foo/bar/baz"
- good = "/foo/bar/baz"
- self.assertEqual(normalize_path(path), good)