blob: 9e643f811fd6f445c5eaa586043315dbf62e078c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
// sub1.js
t = db.sub1;
t.drop();
x = { a : 1 , b : { c : { d : 2 } } }
t.save( x );
y = t.findOne();
assert.eq( 1 , y.a );
assert.eq( 2 , y.b.c.d );
print( tojson( y ) );
|