summaryrefslogtreecommitdiffstats
path: root/pym/portage/tests/util/test_normalizedPath.py
blob: f993886ac347f8fc9e4dacc71a6eff106453a766 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# test_normalizePath.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2

from portage.tests 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)