e5db2ef6d7
* argv store now accept a separator argument to create nested values * remove stub file that shouldnt have been commited * write a test to ensure separator is working well and use delete rather than undefined assign
19 lines
479 B
JavaScript
19 lines
479 B
JavaScript
/*
|
|
* nconf-hierarchical-load-merge.js: Test fixture for loading and merging nested objects across stores.
|
|
*
|
|
* (C) 2012, Charlie Robbins and the Contributors.
|
|
* (C) 2012, Michael Hart
|
|
*
|
|
*/
|
|
|
|
var path = require('path'),
|
|
nconf = require('../../../lib/nconf');
|
|
|
|
nconf.argv({separator: '--'})
|
|
.env('__')
|
|
.file(path.join(__dirname, '..', 'merge', 'file1.json'));
|
|
|
|
process.stdout.write(JSON.stringify({
|
|
apples: nconf.get('apples'),
|
|
candy: nconf.get('candy')
|
|
}));
|