Skip to content

Instantly share code, notes, and snippets.

@umutcoskun
Created December 13, 2017 18:27
Show Gist options
  • Save umutcoskun/ad6579e16967f13b7c82c88f6ddf710a to your computer and use it in GitHub Desktop.
Save umutcoskun/ad6579e16967f13b7c82c88f6ddf710a to your computer and use it in GitHub Desktop.
import unittest
from validators import validate_email
class ValidatorsTestCase(unittest.TestCase):
def test_validate_email(self):
self.assertTrue(validate_email('birisi@gmail.com'))
if __name__ == '__main__':
unittest.main()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment