|
|
|
@ -3,11 +3,11 @@
@@ -3,11 +3,11 @@
|
|
|
|
|
|
|
|
|
|
'use strict'; |
|
|
|
|
|
|
|
|
|
describe("obj", function() { |
|
|
|
|
describe('obj', function() { |
|
|
|
|
|
|
|
|
|
describe("Name", function() { |
|
|
|
|
it("should retain the given name", function() { |
|
|
|
|
var givenName = "Font"; |
|
|
|
|
describe('Name', function() { |
|
|
|
|
it('should retain the given name', function() { |
|
|
|
|
var givenName = 'Font'; |
|
|
|
|
var name = new Name(givenName); |
|
|
|
|
expect(name.name).toEqual(givenName); |
|
|
|
|
}); |
|
|
|
|