From 68cee055aba91242c664f4c59606ffce73f4ce37 Mon Sep 17 00:00:00 2001 From: Alec Warner Date: Wed, 10 Jan 2007 13:45:27 +0000 Subject: split out util tests svn path=/main/trunk/; revision=5529 --- tests/portage_util/test_normalizedPath.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tests/portage_util/test_normalizedPath.py (limited to 'tests/portage_util/test_normalizedPath.py') diff --git a/tests/portage_util/test_normalizedPath.py b/tests/portage_util/test_normalizedPath.py new file mode 100644 index 000000000..9f9a60597 --- /dev/null +++ b/tests/portage_util/test_normalizedPath.py @@ -0,0 +1,16 @@ +# test_normalizePath.py -- Portage Unit Testing Functionality +# Copyright 2006 Gentoo Foundation +# Distributed under the terms of the GNU General Public License v2 +# $Id: test_vercmp.py 5213 2006-12-08 00:12:41Z antarus $ + +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.failUnless(normalize_path(path) == good, msg="NormalizePath(%s) failed to produce %s" % (path, good)) + -- cgit v1.2.3-1-g7c22