-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathAtomContent.js
41 lines (34 loc) · 1.22 KB
/
AtomContent.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
var assert = require('chai').assert,
GedcomX = require('../../');
describe('AtomContent', function(){
it('Create plain', function(){
assert.instanceOf(new GedcomX.AtomContent(), GedcomX.AtomContent, 'An instance of AtomContent is not returned when calling the constructor with new.');
assert.instanceOf(GedcomX.AtomContent(), GedcomX.AtomContent, 'An instance of AtomContent is not returned when calling the constructor without new.');
});
it('Create with JSON', function(){
var content = GedcomX.AtomContent({
gedcomx: {
description: '#root'
}
});
assert.equal(content.getGedcomX().getDescription(), '#root');
});
it('Build', function(){
var content = GedcomX.AtomContent()
.setGedcomX(GedcomX().setDescription('#root'));
assert.equal(content.getGedcomX().getDescription(), '#root');
});
it('toJSON', function(){
var data = {
gedcomx: {
description: '#root'
}
}, content = GedcomX.AtomContent(data);
assert.deepEqual(content.toJSON(), data);
});
it('constructor does not copy instances', function(){
var obj1 = GedcomX.AtomContent();
var obj2 = GedcomX.AtomContent(obj1);
assert.strictEqual(obj1, obj2);
});
});