You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
485 B
19 lines
485 B
|
7 months ago
|
/*
|
||
|
|
* config-test.js: Tests for the broadway config plugin
|
||
|
|
*
|
||
|
|
* (C) 2011, Nodejitsu Inc.
|
||
|
|
* MIT LICENSE
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
|
||
|
|
var vows = require('vows'),
|
||
|
|
events = require('eventemitter2'),
|
||
|
|
assert = require('../helpers/assert'),
|
||
|
|
macros = require('../helpers/macros'),
|
||
|
|
broadway = require('../../lib/broadway');
|
||
|
|
|
||
|
|
vows.describe('broadway/plugins/config').addBatch({
|
||
|
|
"Using the config plugin": {
|
||
|
|
"extending an application": macros.shouldExtend('config')
|
||
|
|
}
|
||
|
|
}).export(module);
|