Add test for Zotero.Utilities.Internal.md5Async()

This commit is contained in:
Dan Stillman 2015-10-29 03:01:35 -04:00
parent ae69fbbd9b
commit 5c32962bb1

View file

@ -0,0 +1,13 @@
"use strict";
describe("Zotero.Utilities.Internal", function () {
describe("#md5Async()", function () {
it("should generate hex string given file path", function* () {
var file = OS.Path.join(getTestDataDirectory().path, 'test.png');
yield assert.eventually.equal(
Zotero.Utilities.Internal.md5Async(file),
'93da8f1e5774c599f0942dcecf64b11c'
);
})
})
})