Generic build of PDF.js library.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

17 lines
410 B

/* -*- Mode: Java; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set shiftwidth=2 tabstop=2 autoindent cindent expandtab: */
'use strict';
describe("obj", function() {
describe("Name", function() {
it("should retain the given name", function() {
var givenName = "Font";
var name = new Name(givenName);
expect(name.name).toEqual(givenName);
});
});
});