summaryrefslogtreecommitdiffstats
path: root/tests/portage_dep/test_dep_getslot.py
blob: 5e18d7cd4acc2f396665558db6da18530280858e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# test_dep_getslot.py -- Portage Unit Testing Functionality
# Copyright 2006 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id: test_atoms.py 5525 2007-01-10 13:35:03Z antarus $

from unittest import TestCase
from portage_dep import dep_getslot

class DepGetSlot(TestCase):
        """ A simple testcase for isvalidatom
        """

        def testDepGetSlot(self):
		
		slot_char = ":"
		slots = ( "a", "1.2", "1", "IloveVapier", None )
		cpvs = ["sys-apps/portage"]

		for cpv in cpvs:
			for slot in slots:
				if slot:
					self.assertEqual( dep_getslot( 
						 cpv + slot_char + slot ), slot )
				else:
					self.assertEqual( dep_getslot( cpv ), slot )

		self.assertEqual( dep_getslot( "sys-apps/portage:"), "" )