From 0c2ff3ed4e17f8b2dd0ddeccdf3b4d57b26aa4a6 Mon Sep 17 00:00:00 2001 From: Young Hahn Date: Fri, 12 Jul 2013 13:21:15 -0400 Subject: [PATCH] Add custom list property to tests. --- test/info.test.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/info.test.js b/test/info.test.js index edee2ce..193ec66 100644 --- a/test/info.test.js +++ b/test/info.test.js @@ -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();