Add custom list property to tests.

This commit is contained in:
Young Hahn
2013-07-12 13:21:15 -04:00
parent edee39f788
commit 0c2ff3ed4e

View File

@@ -48,7 +48,8 @@ describe('info', function() {
var info = {
version: '1.0.0',
level1: { level2: 'property' }
level1: { level2: 'property' },
custom: [ 'custom list' ]
};
new MBTiles(fixtures.empty, function(err, mbtiles) {
@@ -87,6 +88,7 @@ describe('info', function() {
scheme: "tms",
version: "1.0.0",
level1: { level2: "property" },
custom: [ 'custom list' ]
}, data);
done();