1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-26 10:08:06 +02:00

Add jasmine files to external-directory.

This commit is contained in:
Kalervo Kujala 2011-11-20 21:16:47 +02:00
parent 94a64eece9
commit 624a7a74ea
6 changed files with 3239 additions and 6 deletions

View file

@ -1,16 +0,0 @@
/* -*- 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 = "My Name";
var name = new Name(givenName);
expect(name.name).toEqual(givenName);
});
});
});