/* * env-test.js: Tests for the nconf env store. * * (C) 2011, Charlie Robbins * */ var vows = require('vows'), assert = require('assert'), helpers = require('../helpers'), nconf = require('../../lib/nconf'); vows.describe('nconf/stores/env').addBatch({ "An instance of nconf.Env": { topic: new nconf.Env(), "should have the correct methods defined": function (env) { assert.isFunction(env.loadSync); assert.isFunction(env.loadEnv); assert.isArray(env.options); assert.lengthOf(env.options, 0); } } }).export(module);