summaryrefslogtreecommitdiffstats
path: root/tests/portage/dep/test_dep_getcpv.py
diff options
context:
space:
mode:
Diffstat (limited to 'tests/portage/dep/test_dep_getcpv.py')
-rw-r--r--tests/portage/dep/test_dep_getcpv.py31
1 files changed, 31 insertions, 0 deletions
diff --git a/tests/portage/dep/test_dep_getcpv.py b/tests/portage/dep/test_dep_getcpv.py
new file mode 100644
index 000000000..857a408a3
--- /dev/null
+++ b/tests/portage/dep/test_dep_getcpv.py
@@ -0,0 +1,31 @@
+# test_dep_getcpv.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
+from portage.dep import dep_getcpv
+
+class DepGetCPV(TestCase):
+ """ A simple testcase for isvalidatom
+ """
+
+ def testDepGetCPV(self):
+
+ prefix_ops = ["<", ">", "=", "~", "!", "<=",
+ ">=", "!=", "!<", "!>", "!~",""]
+
+ bad_prefix_ops = [ ">~", "<~", "~>", "~<" ]
+ postfix_ops = [ "*", "" ]
+
+ cpvs = ["sys-apps/portage"]
+
+ for cpv in cpvs:
+ for prefix in prefix_ops:
+ for postfix in postfix_ops:
+ self.assertEqual( dep_getcpv(
+ prefix + cpv + postfix ), cpv )
+ for prefix in bad_prefix_ops:
+ for postfix in postfix_ops:
+ self.assertNotEqual( dep_getcpv(
+ prefix + cpv + postfix ), cpv )