summaryrefslogtreecommitdiffstats
path: root/pym/portage/tests/sets/shell/testShell.py
diff options
context:
space:
mode:
authorZac Medico <zmedico@gentoo.org>2008-11-24 02:57:53 +0000
committerZac Medico <zmedico@gentoo.org>2008-11-24 02:57:53 +0000
commit3d18597f176cdf616c547157e4a1df52ac3c758f (patch)
tree04bc933c0a6ba2a4caf0234378670272e91e2259 /pym/portage/tests/sets/shell/testShell.py
parent8b5fe8f0fb990159edd75c4b026f6ec77094039a (diff)
downloadportage-3d18597f176cdf616c547157e4a1df52ac3c758f.tar.gz
portage-3d18597f176cdf616c547157e4a1df52ac3c758f.tar.bz2
portage-3d18597f176cdf616c547157e4a1df52ac3c758f.zip
Remove unused package sets and glsa stuff.
svn path=/main/branches/2.1.6/; revision=12076
Diffstat (limited to 'pym/portage/tests/sets/shell/testShell.py')
-rw-r--r--pym/portage/tests/sets/shell/testShell.py29
1 files changed, 0 insertions, 29 deletions
diff --git a/pym/portage/tests/sets/shell/testShell.py b/pym/portage/tests/sets/shell/testShell.py
deleted file mode 100644
index f8982575a..000000000
--- a/pym/portage/tests/sets/shell/testShell.py
+++ /dev/null
@@ -1,29 +0,0 @@
-# testCommandOututSet.py -- Portage Unit Testing Functionality
-# Copyright 2007 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-from portage.process import find_binary
-from portage.tests import TestCase, test_cps
-from portage._sets.shell import CommandOutputSet
-
-class CommandOutputSetTestCase(TestCase):
- """Simple Test Case for CommandOutputSet"""
-
- def setUp(self):
- pass
-
- def tearDown(self):
- pass
-
- def testCommand(self):
-
- input = set(test_cps)
- command = find_binary("bash")
- command += " -c '"
- for a in input:
- command += " echo -e \"%s\" ; " % a
- command += "'"
- s = CommandOutputSet(command)
- atoms = s.getAtoms()
- self.assertEqual(atoms, input)