diff options
| author | João Fonseca <[email protected]> | 2016-10-17 22:28:35 +0100 |
|---|---|---|
| committer | João Fonseca <[email protected]> | 2016-10-17 22:28:35 +0100 |
| commit | d998170beaf9cbd397cab108a998d7fa78075266 (patch) | |
| tree | 3b1abf3a405e0901125a7af7cae42f983d25690f /test | |
| parent | 7e96b93869b422af5a63c115e04ff0206bf7b228 (diff) | |
| download | faker-d998170beaf9cbd397cab108a998d7fa78075266.tar.xz faker-d998170beaf9cbd397cab108a998d7fa78075266.zip | |
Add ABA routing number
Diffstat (limited to 'test')
| -rw-r--r-- | test/finance.unit.js | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/finance.unit.js b/test/finance.unit.js index 6bbb51c6..51041e37 100644 --- a/test/finance.unit.js +++ b/test/finance.unit.js @@ -57,6 +57,17 @@ describe('finance.js', function () { }); + describe('routingNumber()', function () { + + it("should return a routing number", function () { + + var actual = faker.finance.routingNumber(); + + assert.ok(actual); + + }); + + }); describe('mask( length, parens, elipsis )', function () { it("should set a default length", function () { |
