From fd6df80f2e3b7a3d985dcdac9593cca23af06cf3 Mon Sep 17 00:00:00 2001 From: Karl Hughes Date: Sat, 20 Jan 2018 11:23:02 -0600 Subject: Adding test for zipcode by state, basic functionality --- test/address.unit.js | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) (limited to 'test') diff --git a/test/address.unit.js b/test/address.unit.js index 28775850..a7bd2e1a 100644 --- a/test/address.unit.js +++ b/test/address.unit.js @@ -252,6 +252,22 @@ describe("address.js", function () { }); }); + describe.only("zipCodeByState()", function () { + it("returns zipCode valid for specified State", function () { + faker.locale = "en_US"; + var state = "IL"; + var zipCode = faker.address.zipCodeByState(state); + + assert.ok(zipCode >= 60000); + assert.ok(zipCode <= 60099); + }); + + it("throws error if locale is invalid", function () { + }); + it("throws error if state is invalid", function () { + }); + }); + describe("latitude()", function () { it("returns random latitude", function () { for (var i = 0; i < 100; i++) { -- cgit v1.2.3