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, 0 insertions, 31 deletions
diff --git a/tests/portage_dep/test_dep_getcpv.py b/tests/portage_dep/test_dep_getcpv.py
deleted file mode 100644
index 857a408a3..000000000
--- a/tests/portage_dep/test_dep_getcpv.py
+++ /dev/null
@@ -1,31 +0,0 @@
-# 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 )