mirror of
https://github.com/mgerb/mywebsite
synced 2026-01-13 19:12:49 +00:00
updated package.json
This commit is contained in:
26
node_modules/broadway/test/core/broadway-test.js
generated
vendored
Normal file
26
node_modules/broadway/test/core/broadway-test.js
generated
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
/*
|
||||
* broadway-test.js: Tests for core App methods and configuration.
|
||||
*
|
||||
* (C) 2011, Nodejitsu Inc.
|
||||
* MIT LICENSE
|
||||
*
|
||||
*/
|
||||
|
||||
var assert = require('assert'),
|
||||
events = require('eventemitter2'),
|
||||
vows = require('vows'),
|
||||
broadway = require('../../lib/broadway');
|
||||
|
||||
vows.describe('broadway').addBatch({
|
||||
"The broadway module": {
|
||||
"should have the appropriate properties and methods defined": function () {
|
||||
assert.isFunction(broadway.App);
|
||||
assert.isObject(broadway.common);
|
||||
assert.isObject(broadway.features);
|
||||
assert.isObject(broadway.plugins);
|
||||
assert.isObject(broadway.plugins.log);
|
||||
assert.isObject(broadway.plugins.config);
|
||||
assert.isObject(broadway.plugins.exceptions);
|
||||
}
|
||||
}
|
||||
}).export(module);
|
||||
Reference in New Issue
Block a user