Exemplo n.º 1
0
def testSiteRemove(orga):
	print "Creating site..."
	site = randomName()
	site_create(site, orga, "Just a test")
	print "Removing site..."
	site_remove(site)
Exemplo n.º 2
0
def setUp(name):
	orga = setUpOrga(name)
	print "Creating site..."
	site = randomName()
	site_create(site, orga, "Just a test")
	return site