pdf.js/test/unit/obj_spec.js
Kalervo Kujala 168e5db2fd Add unit test files to lint.
And fix the lint warnings from obj_spec.js.
2011-11-26 20:35:46 +02:00

17 lines
410 B
JavaScript

/* -*- 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);
});
});
});