예제 #1
0
파일: sites.py 프로젝트: plaljx/ToMaTo
def testSiteRemove(orga):
	print "Creating site..."
	site = randomName()
	site_create(site, orga, "Just a test")
	print "Removing site..."
	site_remove(site)
예제 #2
0
파일: sites.py 프로젝트: plaljx/ToMaTo
def setUp(name):
	orga = setUpOrga(name)
	print "Creating site..."
	site = randomName()
	site_create(site, orga, "Just a test")
	return site