-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjson.js
45 lines (35 loc) · 1.07 KB
/
json.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
42
43
44
45
var test = require('tape'),
Gaffa = require('gaffa'),
Text = require('gaffa-text'),
Container = require('gaffa-container');
test('JSONify plain text', function (t) {
t.plan(1);
var viewItem = new Text(),
viewItemJSON = JSON.stringify(viewItem),
pojo = JSON.parse(viewItemJSON);
t.deepEqual(pojo, {_type:'text'});
t.end();
});
test('JSONify text with value binding', function (t) {
t.plan(1);
var viewItem = new Text(),
viewItemJSON,
pojo;
viewItem.text.binding = '[thing]';
viewItemJSON = JSON.stringify(viewItem),
pojo = JSON.parse(viewItemJSON);
t.deepEqual(pojo, {_type:'text', text:{binding:'[thing]'}});
t.end();
});
test('JSONify container with child', function (t) {
t.plan(1);
var viewItem = new Container(),
text = new Text(),
viewItemJSON,
pojo;
viewItem.views.content.add(text);
viewItemJSON = JSON.stringify(viewItem),
pojo = JSON.parse(viewItemJSON);
t.deepEqual(pojo, {_type:'container', views:{content:[{_type:'text'}]}});
t.end();
});