zotero/test/tests/openurlTest.js

24 lines
552 B
JavaScript
Raw Normal View History

"use strict";
describe("Zotero.OpenURL", function() {
describe("#createContextObject()", function () {
it("should use firstCreator for author", function* () {
var item = createUnsavedDataObject('item');
item.setCreators([
{
firstName: "Aaa",
lastName: "Editor",
creatorType: 'editor'
},
{
firstName: "Bbb",
lastName: "Author",
creatorType: 'author'
}
]);
var co = Zotero.OpenURL.createContextObject(item, "1.0");
assert.include(co, '&rft.aufirst=Bbb&rft.aulast=Author&');
});
});
});