'use strict'; var should = require('chai').should(); var sinon = require('sinon'); describe('#findConfig', function() { before(function() { // setup testing directories }); after(function() { // cleanup testing directories }); describe('will find a configuration file', function() { it('in the current directory', function() { }); it('in a parent directory', function() { }); it('recursively find in parent directories', function() { }); }); it('will fallback to a default location in the home directory', function() { }); });