summaryrefslogtreecommitdiffstats
path: root/pym/portage/tests/bin/test_dodir.py
blob: eab681028328a0c4de5983d92e79a0c2812c2a5f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
# test_dodir.py -- Portage Unit Testing Functionality
# Copyright 2007 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Id$

from portage.tests.bin.setup_env import *

class DoDir(BinTestCase):
	def testDoDir(self):
		dodir("usr /usr")
		exists_in_D("/usr")
		dodir("/var/lib/moocow")
		exists_in_D("/var/lib/moocow")