aboutsummaryrefslogtreecommitdiffstats
path: root/test/ValidatorsTest.js
diff options
context:
space:
mode:
Diffstat (limited to 'test/ValidatorsTest.js')
-rw-r--r--test/ValidatorsTest.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/ValidatorsTest.js b/test/ValidatorsTest.js
index 463e05de..cc77b6da 100644
--- a/test/ValidatorsTest.js
+++ b/test/ValidatorsTest.js
@@ -69,12 +69,6 @@ ValidatorTest.prototype.testPhone = function() {
assertEquals(null, angular.validator.phone("+421 0905 933 297"));
};
-ValidatorTest.prototype.testSSN = function() {
- var error = "SSN needs to be in 999-99-9999 format.";
- assertEquals(angular.validator.ssn("ab"), error);
- assertEquals(angular.validator.ssn("123-45-6789"), null);
-};
-
ValidatorTest.prototype.testURL = function() {
var error = "URL needs to be in http://server[:port]/path format.";
assertEquals(angular.validator.url("ab"), error);