2 # Copyright 2013 The Chromium Authors. All rights reserved.
3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file.
8 from manifest_features
import ConvertDottedKeysToNested
10 class ManifestFeaturesTest(unittest
.TestCase
):
11 def testConvertDottedKeysToNested(self
):
22 'doc1.sub1.subsub1': {
23 'name': 'doc1.sub1.subsub1'
52 self
.assertEqual(expected_docs
, ConvertDottedKeysToNested(docs
))
54 if __name__
== '__main__':