Created
December 13, 2017 18:27
-
-
Save umutcoskun/ad6579e16967f13b7c82c88f6ddf710a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import unittest | |
from validators import validate_email | |
class ValidatorsTestCase(unittest.TestCase): | |
def test_validate_email(self): | |
self.assertTrue(validate_email('[email protected]')) | |
if __name__ == '__main__': | |
unittest.main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment