Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Avatar for KuCalc : devops.
Download
50660 views
1
/*
2
* log-test.js: Tests for the broadway config plugin
3
*
4
* (C) 2011, Nodejitsu Inc.
5
* MIT LICENSE
6
*
7
*/
8
9
var vows = require('vows'),
10
events = require('eventemitter2'),
11
assert = require('../helpers/assert'),
12
macros = require('../helpers/macros'),
13
broadway = require('../../lib/broadway');
14
15
vows.describe('broadway/plugins/config').addBatch({
16
"Using the config plugin": {
17
"extending an application": macros.shouldExtend('config')
18
}
19
}).export(module);
20