Moved tests to paramecio root

This commit is contained in:
Antonio de la Rosa 2016-08-03 02:49:33 +02:00
parent c50629e2c7
commit a04a9e1e86
14 changed files with 2 additions and 0 deletions

25
tests/sendmailtest.py Normal file
View file

@ -0,0 +1,25 @@
from settings import config
from paramecio.citoplasma import sendmail
import time
import unittest
class TestFieldMethods(unittest.TestCase):
def test_sendmail(self):
s=sendmail.SendMail()
self.assertTrue( s.send(config.portal_email, [config.email_test], 'This is a test', 'A message for test a simple email method', content_type='plain', attachments=[]) )
s=sendmail.SendMail()
self.assertTrue( s.send(config.portal_email, [config.email_test], 'This is a test', 'A message for test a simple email method in <b>html</b>', content_type='html', attachments=[]) )
s=sendmail.SendMail()
self.assertTrue( s.send(config.portal_email, [config.email_test], 'This is a test', 'A message for test a simple email method in <b>html</b> and attachments', content_type='html', attachments=['tests/images/image.jpg']) )
#s.quit()
if __name__ == '__main__':
unittest.main()