summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/config-chain/test/env.js
blob: fb718f32b7d9deab021550081f20245234086d55 (plain)
1
2
3
4
5
6
7
8
9
10
var cc = require('..')
var assert = require('assert')

assert.deepEqual({
  hello: true
}, cc.env('test_', {
  'test_hello': true,
  'ignore_this': 4,
  'ignore_test_this_too': []
}))