Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/apps/system/test/unit/mock_manifest_helper.js
blob: 34f9a139be1282a6520face2393ba36afd39cf1d (plain)
1
2
3
4
5
MockManifestHelper = function(manifest) {
  for (var prop in manifest) {
    this[prop] = manifest[prop];
  }
};