diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/test-password.js | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/test-password.js b/tests/test-password.js new file mode 100644 index 0000000..e46ed9c --- /dev/null +++ b/tests/test-password.js @@ -0,0 +1,18 @@ +/*jslint forin: true, rhino: true, onevar: false, browser: true, evil: true, laxbreak: true, undef: true, nomen: true, eqeqeq: true, bitwise: true, maxerr: 1000, immed: false, white: false, plusplus: false, regexp: false, undef: false */ +// Released under the MIT/X11 license +// http://www.opensource.org/licenses/mit-license.php +"use strict"; +var passMod = require("passwords"); +var BTSRealm = "BTSTest"; +var testLogin = "testUser"; +var testPass = "verySecret"; +var testDomain = "http://www.example.com"; + +exports.ensurePasswordMachinery = function (test) { + passMod.setLogin(testLogin, testPass, + testDomain, BTSRealm); + test.assertEqual(passMod.getPassword(testLogin, + testDomain, BTSRealm), testPass, ""); + passMod.removeLogin(testLogin, testPass, + testDomain, BTSRealm); +}; |