Created
May 7, 2015 16:53
-
-
Save edprince/6ac94f4b5921948ee226 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
var assert = require('assert'); | |
function validateEmail(email) { | |
var regex = /.*@.*\..*/; | |
return email.match(regex); | |
} | |
describe('Email Validation', function() { | |
describe('Types', function() { | |
it('should be a function', function() { | |
assert.equal(typeof validateEmail, 'function'); | |
}); | |
it('should return a boolean', function() { | |
assert.equal(validateEmail('test'), 'boolean'); | |
}); | |
}); | |
describe('Valid', function() { | |
var emails = ['[email protected]', '[email protected]']; | |
emails.forEach(function(email) { | |
it('should return true', function() { | |
assert.equal(validateEmail(email), true); | |
}); | |
}); | |
}); | |
describe('Invalid', function() { | |
var emails = ['danlol.com', 'ed/haha.com']; | |
emails.forEach(function(email) { | |
it('should return false', function() { | |
assert.equal(validateEmail(email), false); | |
}); | |
}); | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment