Exemplo n.º 1
0
	def setUp(self):
		self.server = Server(settings.COUCHDB_SERVER)
		try:
			self.db = self.server.create('comfy_blog_test')
		except:
			self.db = self.server['comfy_blog_test']
		
		self.presentation = Presentation(title=u"Hello, World!", slug=u"hello-world", published=datetime(2008, 8, 8), author={'name': 'Myles Braithwaite', 'email': '*****@*****.**'})
		self.presentation.store(self.db)
Exemplo n.º 2
0
class PresentationTestCase(unittest.TestCase):
	def setUp(self):
		self.server = Server(settings.COUCHDB_SERVER)
		try:
			self.db = self.server.create('comfy_blog_test')
		except:
			self.db = self.server['comfy_blog_test']
		
		self.presentation = Presentation(title=u"Hello, World!", slug=u"hello-world", published=datetime(2008, 8, 8), author={'name': 'Myles Braithwaite', 'email': '*****@*****.**'})
		self.presentation.store(self.db)
	
	def testAddSlides(self):
		self.presentation.slides = [{
			'title': u"First Slide",
			'body': u"Hello, World!",
			'notes': u"<p>Hello, World!",
		}]
		self.presentation.store(self.db)
	
	def tearDown(self):
		del self.server['comfy_blog_test']